1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

initial crontab parser

This commit is contained in:
Kelly Brazil
2019-12-16 17:01:53 -08:00
parent 687759f75d
commit b076ab5b57
3 changed files with 177 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import signal
import json
import jc.utils
import jc.parsers.arp
import jc.parsers.crontab
import jc.parsers.df
import jc.parsers.dig
import jc.parsers.du
@ -39,6 +40,7 @@ import jc.parsers.w
parser_map = {
'--arp': jc.parsers.arp,
'--crontab': jc.parsers.crontab,
'--df': jc.parsers.df,
'--dig': jc.parsers.dig,
'--du': jc.parsers.du,