mirror of
https://github.com/adulau/hashlookup-server.git
synced 2024-11-21 17:47:06 +00:00
Fix jq parse error on special chars
This commit is contained in:
parent
c17dbff6a6
commit
09b56135d1
1 changed files with 2 additions and 2 deletions
|
@ -279,7 +279,7 @@ The domain to query is `<query>.dns.hashlookup.circl.lu`. The query can be `info
|
||||||
## Info of the hashlookup database
|
## Info of the hashlookup database
|
||||||
|
|
||||||
```
|
```
|
||||||
dig +short -t TXT info.dns.hashlookup.circl.lu | jq -r . | jq .
|
dig +short -t TXT info.dns.hashlookup.circl.lu | jq -j . | jq .
|
||||||
```
|
```
|
||||||
|
|
||||||
~~~json
|
~~~json
|
||||||
|
@ -298,7 +298,7 @@ dig +short -t TXT info.dns.hashlookup.circl.lu | jq -r . | jq .
|
||||||
## Query of a hash
|
## Query of a hash
|
||||||
|
|
||||||
```
|
```
|
||||||
dig +short -t TXT 931606baaa7a2b4ef61198406f8fc3f4.dns.hashlookup.circl.lu | jq -r . | jq .
|
dig +short -t TXT 931606baaa7a2b4ef61198406f8fc3f4.dns.hashlookup.circl.lu | jq -j . | jq .
|
||||||
```
|
```
|
||||||
|
|
||||||
~~~json
|
~~~json
|
||||||
|
|
Loading…
Reference in a new issue