diff --git a/README.md b/README.md index 092f1100..c61b0c02 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,7 @@ option. | ` --ini` | INI file parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ini) | | ` --iostat` | `iostat` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat) | | ` --iostat-s` | `iostat` command streaming parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s) | -| ` --ip-address` | IP Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | +| ` --ip-address` | IPv4 and IPv6 Address string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address) | | ` --iptables` | `iptables` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables) | | ` --iso-datetime` | ISO 8601 Datetime string parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iso_datetime) | | ` --iw-scan` | `iw dev [device] scan` command parser | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan) | diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh index c65c4b90..f0aaae72 100644 --- a/completions/jc_zsh_completion.sh +++ b/completions/jc_zsh_completion.sh @@ -137,7 +137,7 @@ _jc() { '--ini:INI file parser' '--iostat:`iostat` command parser' '--iostat-s:`iostat` command streaming parser' - '--ip-address:IP Address string parser' + '--ip-address:IPv4 and IPv6 Address string parser' '--iptables:`iptables` command parser' '--iso-datetime:ISO 8601 Datetime string parser' '--iw-scan:`iw dev [device] scan` command parser' diff --git a/docs/parsers/ip_address.md b/docs/parsers/ip_address.md index a67589fe..aa664e73 100644 --- a/docs/parsers/ip_address.md +++ b/docs/parsers/ip_address.md @@ -409,7 +409,7 @@ Examples: } # Teredo Address - % echo 2001:0000:4136:e378:8000:63bf:3fff:fdd2 | jc --ip-address -p + $ echo 2001:0000:4136:e378:8000:63bf:3fff:fdd2 | jc --ip-address -p { "version": 6, "max_prefix_length": 128, diff --git a/jc/parsers/ip_address.py b/jc/parsers/ip_address.py index 901aa3b1..61fd6184 100644 --- a/jc/parsers/ip_address.py +++ b/jc/parsers/ip_address.py @@ -404,7 +404,7 @@ Examples: } # Teredo Address - % echo 2001:0000:4136:e378:8000:63bf:3fff:fdd2 | jc --ip-address -p + $ echo 2001:0000:4136:e378:8000:63bf:3fff:fdd2 | jc --ip-address -p { "version": 6, "max_prefix_length": 128, diff --git a/man/jc.1 b/man/jc.1 index 3bdec263..5b2a4610 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -225,7 +225,7 @@ INI file parser .TP .B \fB--ip-address\fP -IP Address string parser +IPv4 and IPv6 Address string parser .TP .B