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

198 lines
4.0 KiB
Markdown
Raw Normal View History

2019-12-16 17:52:09 -08:00
# jc.parsers.crontab
2020-02-13 16:58:25 -08:00
jc - JSON CLI output utility crontab command and file Parser
2019-12-16 17:52:09 -08:00
Usage:
2020-02-13 16:58:25 -08:00
specify --crontab as the first argument if the piped input is coming from crontab -l or a crontab file
2019-12-16 17:52:09 -08:00
Compatibility:
2019-12-16 18:36:13 -08:00
'linux', 'darwin', 'aix', 'freebsd'
2019-12-16 17:52:09 -08:00
Examples:
2020-02-13 16:58:25 -08:00
$ crontab -l | jc --crontab -p
2019-12-16 17:52:09 -08:00
{
"variables": [
{
"name": "MAILTO",
"value": "root"
},
{
"name": "PATH",
"value": "/sbin:/bin:/usr/sbin:/usr/bin"
},
{
"name": "SHELL",
"value": "/bin/bash"
}
],
"schedule": [
{
"minute": [
"5"
],
"hour": [
"10-11",
"22"
],
"day_of_month": [
"*"
],
"month": [
"*"
],
"day_of_week": [
"*"
],
"command": "/var/www/devdaily.com/bin/mk-new-links.php"
},
{
"minute": [
"30"
],
"hour": [
"4/2"
],
"day_of_month": [
"*"
],
"month": [
"*"
],
"day_of_week": [
"*"
],
"command": "/var/www/devdaily.com/bin/create-all-backups.sh"
},
{
"occurrence": "yearly",
"command": "/home/maverick/bin/annual-maintenance"
},
{
"occurrence": "reboot",
"command": "/home/cleanup"
},
{
"occurrence": "monthly",
"command": "/home/maverick/bin/tape-backup"
}
]
}
2019-12-16 18:54:19 -08:00
$ cat /etc/crontab | jc --crontab -p -r
2019-12-16 17:52:09 -08:00
{
"variables": [
{
"name": "MAILTO",
"value": "root"
},
{
"name": "PATH",
"value": "/sbin:/bin:/usr/sbin:/usr/bin"
},
{
"name": "SHELL",
"value": "/bin/bash"
}
],
"schedule": [
{
"minute": "5",
"hour": "10-11,22",
"day_of_month": "*",
"month": "*",
"day_of_week": "*",
"command": "/var/www/devdaily.com/bin/mk-new-links.php"
},
{
"minute": "30",
"hour": "4/2",
"day_of_month": "*",
"month": "*",
"day_of_week": "*",
"command": "/var/www/devdaily.com/bin/create-all-backups.sh"
},
{
"occurrence": "yearly",
"command": "/home/maverick/bin/annual-maintenance"
},
{
"occurrence": "reboot",
"command": "/home/cleanup"
},
{
"occurrence": "monthly",
"command": "/home/maverick/bin/tape-backup"
}
]
}
## info
```python
info(self, /, *args, **kwargs)
```
## process
```python
process(proc_data)
```
Final processing to conform to the schema.
Parameters:
proc_data: (dictionary) raw structured data to process
Returns:
2019-12-17 09:56:09 -08:00
Dictionary. Structured data with the following schema:
2019-12-16 17:52:09 -08:00
2019-12-16 18:58:33 -08:00
{
"variables": [
2020-02-04 14:19:33 -08:00
"name": string,
"value": string
2019-12-16 18:58:33 -08:00
],
"schedule": [
{
"occurrence" string,
"minute": [
string
],
"hour": [
string
],
"day_of_month": [
string
],
"month": [
string
],
"day_of_week": [
string
],
"occurrence": string,
"command": string
}
]
}
2019-12-16 17:52:09 -08:00
## parse
```python
parse(data, raw=False, quiet=False)
```
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) output preprocessed JSON if True
quiet: (boolean) suppress warning messages if True
Returns:
2019-12-17 10:09:19 -08:00
Dictionary. Raw or processed structured data.
2019-12-16 17:52:09 -08:00