We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d682f6 commit cec7ff0Copy full SHA for cec7ff0
README.md
@@ -103,9 +103,9 @@ cat risk_asn_kind.json | jq 'keys[]'
103
cat risk_net4_med.json | jq 'map_values(select(.reputation == "bad")) | keys[]'
104
105
# Only get ASN's that are flagged a certain kind
106
-cat risk_asn_kind.json | jq 'map_values(select(.kind.scanner == true)) | keys[]' | tr -d '"' | sort
+cat risk_asn_kind.json | jq -r 'map_values(select(.kind.scanner == true)) | keys[]' | sort
107
# or
108
-cat risk_ip4_med.json | jq 'keys[] | map_values(select(.kind.hosting == true)) | keys[]' | tr -d '"' | sort
+cat risk_ip4_med.json | jq -r 'keys[] | map_values(select(.kind.hosting == true)) | keys[]' | sort
109
```
110
111
----
0 commit comments