diff options
Diffstat (limited to 'Examples of proper JQ usage.md')
-rw-r--r-- | Examples of proper JQ usage.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Examples of proper JQ usage.md b/Examples of proper JQ usage.md new file mode 100644 index 0000000..b63ee4e --- /dev/null +++ b/Examples of proper JQ usage.md @@ -0,0 +1,11 @@ +--- +tags: + - linux + - jq + - howto +--- +Double escapes are important! + +``` +jq -r '.fixed_ips[] | select(.ip_address | test("\\.")) | .ip_address' +```
\ No newline at end of file |