1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

try using a table for parser list

This commit is contained in:
Kelly Brazil
2022-04-28 10:49:35 -07:00
parent 65ed92fe7b
commit fdeb994121
2 changed files with 104 additions and 100 deletions

198
README.md
View File

@ -144,104 +144,106 @@ option.
### Parsers ### Parsers
- `--acpi` enables the `acpi` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi)) | Argument | Command or Filetype | Documentation |
- `--airport` enables the `airport -I` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport)) |--------------|-------------------------|-------------------|
- `--airport-s` enables the `airport -s` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport_s)) | `--acpi` | `acpi` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/acpi) |
- `--arp` enables the `arp` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/arp)) | `--airport` | `airport -I` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport) |
- `--asciitable` enables the ASCII and Unicode table parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable)) | `--airport-s` | `airport -s` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/airport_s) |
- `--asciitable-m` enables the multi-line ASCII and Unicode table parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m)) | `--arp` | `arp` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/arp) |
- `--blkid` enables the `blkid` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/blkid)) | `--asciitable` | ASCII and Unicode table parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable) |
- `--cksum` enables the `cksum` and `sum` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/cksum)) | `--asciitable-m` | multi-line ASCII and Unicode table parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/asciitable_m) |
- `--crontab` enables the `crontab` command and file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab)) | `--blkid` | `blkid` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/blkid) |
- `--crontab-u` enables the `crontab` file parser with user support ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab_u)) | `--cksum` | `cksum` and `sum` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/cksum) |
- `--csv` enables the CSV file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv)) | `--crontab` | `crontab` command and file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab) |
- `--csv-s` enables the CSV file streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv_s)) | `--crontab-u` | `crontab` file parser with user support | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/crontab_u) |
- `--date` enables the `date` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/date)) | `--csv` | CSV file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv) |
- `--df` enables the `df` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/df)) | `--csv-s` | CSV file streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/csv_s) |
- `--dig` enables the `dig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dig)) | `--date` | `date` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/date) |
- `--dir` enables the `dir` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dir)) | `--df` | `df` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/df) |
- `--dmidecode` enables the `dmidecode` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dmidecode)) | `--dig` | `dig` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dig) |
- `--dpkg-l` enables the `dpkg -l` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dpkg_l)) | `--dir` | `dir` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dir) |
- `--du` enables the `du` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/du)) | `--dmidecode` | `dmidecode` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dmidecode) |
- `--env` enables the `env` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/env)) | `--dpkg-l` | `dpkg -l` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/dpkg_l) |
- `--file` enables the `file` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/file)) | `--du` | `du` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/du) |
- `--finger` enables the `finger` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/finger)) | `--env` | `env` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/env) |
- `--free` enables the `free` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/free)) | `--file` | `file` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/file) |
- `--fstab` enables the `/etc/fstab` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/fstab)) | `--finger` | `finger` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/finger) |
- `--git-log` enables the `git log` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/git_log)) | `--free` | `free` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/free) |
- `--group` enables the `/etc/group` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/group)) | `--fstab` | `/etc/fstab` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/fstab) |
- `--gshadow` enables the `/etc/gshadow` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/gshadow)) | `--git-log` | `git log` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/git_log) |
- `--hash` enables the `hash` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hash)) | `--group` | `/etc/group` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/group) |
- `--hashsum` enables the hashsum command parser (`md5sum`, `shasum`, etc.) ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hashsum)) | `--gshadow` | `/etc/gshadow` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/gshadow) |
- `--hciconfig` enables the `hciconfig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hciconfig)) | `--hash` | `hash` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hash) |
- `--history` enables the `history` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/history)) | `--hashsum` | hashsum command parser (`md5sum`, `shasum`, etc.) | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hashsum) |
- `--hosts` enables the `/etc/hosts` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hosts)) | `--hciconfig` | `hciconfig` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hciconfig) |
- `--id` enables the `id` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/id)) | `--history` | `history` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/history) |
- `--ifconfig` enables the `ifconfig` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ifconfig)) | `--hosts` | `/etc/hosts` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/hosts) |
- `--ini` enables the INI file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ini)) | `--id` | `id` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/id) |
- `--iostat` enables the `iostat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat)) | `--ifconfig` | `ifconfig` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ifconfig) |
- `--iostat-s` enables the `iostat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s)) | `--ini` | INI file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ini) |
- `--iptables` enables the `iptables` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables)) | `--iostat` | `iostat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) |
- `--iw-scan` enables the `iw dev [device] scan` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan)) | `--iostat-s` | `iostat` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) |
- `--jar-manifest` enables the MANIFEST.MF file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/jar_manifest)) | `--iptables` | `iptables` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) |
- `--jobs` enables the `jobs` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/jobs)) | `--iw-scan` | `iw dev [device] scan` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) |
- `--kv` enables the Key/Value file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/kv)) | `--jar-manifest` | MANIFEST.MF file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/jar_manifest) |
- `--last` enables the `last` and `lastb` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/last)) | `--jobs` | `jobs` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/jobs) |
- `--ls` enables the `ls` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls)) | `--kv` | Key/Value file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/kv) |
- `--ls-s` enables the `ls` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls_s)) | `--last` | `last` and `lastb` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/last) |
- `--lsblk` enables the `lsblk` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsblk)) | `--ls` | `ls` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls) |
- `--lsmod` enables the `lsmod` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsmod)) | `--ls-s` | `ls` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ls_s) |
- `--lsof` enables the `lsof` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsof)) | `--lsblk` | `lsblk` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsblk) |
- `--lsusb` enables the `lsusb` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsusb)) | `--lsmod` | `lsmod` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsmod) |
- `--mount` enables the `mount` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mount)) | `--lsof` | `lsof` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsof) |
- `--mpstat` enables the `mpstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mpstat)) | `--lsusb` | `lsusb` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/lsusb) |
- `--mpstat-s` enables the `mpstat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mpstat_s)) | `--mount` | `mount` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mount) |
- `--netstat` enables the `netstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/netstat)) | `--mpstat` | `mpstat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mpstat) |
- `--nmcli` enables the `nmcli` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/nmcli)) | `--mpstat-s` | `mpstat` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/mpstat_s) |
- `--ntpq` enables the `ntpq -p` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ntpq)) | `--netstat` | `netstat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/netstat) |
- `--passwd` enables the `/etc/passwd` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/passwd)) | `--nmcli` | `nmcli` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/nmcli) |
- `--pidstat` enables the `pidstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pidstat)) | `--ntpq` | `ntpq -p` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ntpq) |
- `--pidstat-s` enables the `pidstat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pidstat_s)) | `--passwd` | `/etc/passwd` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/passwd) |
- `--ping` enables the `ping` and `ping6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping)) | `--pidstat` | `pidstat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pidstat) |
- `--ping-s` enables the `ping` and `ping6` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping_s)) | `--pidstat-s` | `pidstat` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pidstat_s) |
- `--pip-list` enables the `pip list` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list)) | `--ping` | `ping` and `ping6` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping) |
- `--pip-show` enables the `pip show` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show)) | `--ping-s` | `ping` and `ping6` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ping_s) |
- `--ps` enables the `ps` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ps)) | `--pip-list` | `pip list` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_list) |
- `--route` enables the `route` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/route)) | `--pip-show` | `pip show` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/pip_show) |
- `--rpm-qi` enables the `rpm -qi` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rpm_qi)) | `--ps` | `ps` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ps) |
- `--rsync` enables the `rsync` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rsync)) | `--route` | `route` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/route) |
- `--rsync-s` enables the `rsync` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rsync_s)) | `--rpm-qi` | `rpm -qi` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rpm_qi) |
- `--sfdisk` enables the `sfdisk` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sfdisk)) | `--rsync` | `rsync` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rsync) |
- `--shadow` enables the `/etc/shadow` file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/shadow)) | `--rsync-s` | `rsync` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/rsync_s) |
- `--ss` enables the `ss` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ss)) | `--sfdisk` | `sfdisk` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sfdisk) |
- `--stat` enables the `stat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat)) | `--shadow` | `/etc/shadow` file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/shadow) |
- `--stat-s` enables the `stat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat_s)) | `--ss` | `ss` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ss) |
- `--sysctl` enables the `sysctl` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sysctl)) | `--stat` | `stat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat) |
- `--systemctl` enables the `systemctl` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl)) | `--stat-s` | `stat` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/stat_s) |
- `--systemctl-lj` enables the `systemctl list-jobs` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_lj)) | `--sysctl` | `sysctl` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/sysctl) |
- `--systemctl-ls` enables the `systemctl list-sockets` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_ls)) | `--systemctl` | `systemctl` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl) |
- `--systemctl-luf` enables the `systemctl list-unit-files` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_luf)) | `--systemctl-lj` | `systemctl list-jobs` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_lj) |
- `--systeminfo` enables the `systeminfo` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systeminfo)) | `--systemctl-ls` | `systemctl list-sockets` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_ls) |
- `--time` enables the `/usr/bin/time` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/time)) | `--systemctl-luf` | `systemctl list-unit-files` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systemctl_luf) |
- `--timedatectl` enables the `timedatectl status` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/timedatectl)) | `--systeminfo` | `systeminfo` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/systeminfo) |
- `--tracepath` enables the `tracepath` and `tracepath6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/tracepath)) | `--time` | `/usr/bin/time` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/time) |
- `--traceroute` enables the `traceroute` and `traceroute6` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/traceroute)) | `--timedatectl` | `timedatectl status` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/timedatectl) |
- `--ufw` enables the `ufw status` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw)) | `--tracepath` | `tracepath` and `tracepath6` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/tracepath) |
- `--ufw-appinfo` enables the `ufw app info [application]` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw_appinfo)) | `--traceroute` | `traceroute` and `traceroute6` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/traceroute) |
- `--uname` enables the `uname -a` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uname)) | `--ufw` | `ufw status` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw) |
- `--update-alt-gs` enables the `update-alternatives --get-selections` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/update_alt_gs)) | `--ufw-appinfo` | `ufw app info [application]` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/ufw_appinfo) |
- `--update-alt-q` enables the `update-alternatives --query` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/update_alt_q)) | `--uname` | `uname -a` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uname) |
- `--upower` enables the `upower` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/upower)) | `--update-alt-gs` | `update-alternatives --get-selections` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/update_alt_gs) |
- `--uptime` enables the `uptime` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uptime)) | `--update-alt-q` | `update-alternatives --query` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/update_alt_q) |
- `--vmstat` enables the `vmstat` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat)) | `--upower` | `upower` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/upower) |
- `--vmstat-s` enables the `vmstat` command streaming parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat_s)) | `--uptime` | `uptime` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/uptime) |
- `--w` enables the `w` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/w)) | `--vmstat` | `vmstat` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat) |
- `--wc` enables the `wc` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/wc)) | `--vmstat-s` | `vmstat` command streaming parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/vmstat_s) |
- `--who` enables the `who` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/who)) | `--w` | `w` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/w) |
- `--xml` enables the XML file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/xml)) | `--wc` | `wc` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/wc) |
- `--xrandr` enables the `xrandr` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/xrandr)) | `--who` | `who` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/who) |
- `--yaml` enables the YAML file parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/yaml)) | `--xml` | XML file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/xml) |
- `--zipinfo` enables the `zipinfo` command parser ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/zipinfo)) | `--xrandr` | `xrandr` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/xrandr) |
| `--yaml` | YAML file parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/yaml) |
| `--zipinfo` | `zipinfo` command parser | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/zipinfo) |
### Options ### Options
- `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of - `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of

View File

@ -143,8 +143,10 @@ The JSON output can be compact (default) or pretty formatted with the `-p`
option. option.
### Parsers ### Parsers
{% for parser in jc.parsers %}
- `{{ parser.argument }}` enables the {{ parser.description }} ([documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/{{ parser.name }})){% endfor %} | Argument | Command or Filetype | Documentation |
|--------------|-------------------------|-------------------|{% for parser in jc.parsers %}
| `{{ parser.argument }}` | {{ parser.description }} | [documentation](https://kellyjonbrazil.github.io/jc/docs/parsers/{{ parser.name }}) |{% endfor %}
### Options ### Options
- `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of - `-a` about `jc`. Prints information about `jc` and the parsers (in JSON, of