Skip to content

Commit 9b55d31

Browse files
authored
Merge pull request #93 from maxmind/greg/eng-1550
Minor doc improvements
2 parents cfad207 + 89f2068 commit 9b55d31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -385,10 +385,10 @@ $ mmdbinspect -jsonl -db GeoLite2-ASN.mmdb 152.216.7.49 | jq -r '.record.autonom
385385
Create a CSV file with network and country code for all networks with data:
386386
```bash
387387
$ echo "network,country" > networks.csv
388-
$ mmdbinspect -jsonl -db GeoIP2-Country.mmdb ::/0 | jq -r '[.network, .record.country.iso_code] | join(",")' >> networks.csv
388+
$ mmdbinspect -jsonl -db GeoIP2-Country.mmdb ::/0 | jq -r '[.network, .record.country.iso_code] | @csv' >> networks.csv
389389
$ cat networks.csv
390390
network,country
391-
1.1.1.0/24,AU
391+
"1.1.1.0/24","AU"
392392
...
393393
```
394394

@@ -408,7 +408,7 @@ $ mmdbinspect -jsonl -db GeoIP2-City.mmdb 152.216.7.49 | jq -r '.record | [.city
408408
</details>
409409

410410
<details>
411-
<summary>Using the `-include-*` flags for additional information</summary>
411+
<summary>Using the <code>-include-*</code> flags for additional information</summary>
412412

413413
Include build time information:
414414
```bash

0 commit comments

Comments
 (0)