1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

add ini file parser

This commit is contained in:
Kelly Brazil
2020-02-03 19:07:31 -08:00
parent bf033239a7
commit 76583dcd2f
2 changed files with 113 additions and 0 deletions

View File

@ -18,6 +18,7 @@ import jc.parsers.fstab
import jc.parsers.history
import jc.parsers.hosts
import jc.parsers.ifconfig
import jc.parsers.ini
import jc.parsers.iptables
import jc.parsers.jobs
import jc.parsers.ls
@ -53,6 +54,7 @@ parser_map = {
'--history': jc.parsers.history,
'--hosts': jc.parsers.hosts,
'--ifconfig': jc.parsers.ifconfig,
'--ini': jc.parsers.ini,
'--iptables': jc.parsers.iptables,
'--jobs': jc.parsers.jobs,
'--ls': jc.parsers.ls,