From 0a711341681a1c26912adf16164b39d8fe0d05ea Mon Sep 17 00:00:00 2001 From: Maxime Mouchet Date: Fri, 9 Sep 2022 09:18:39 +0200 Subject: [PATCH] readme: fix example --- .gitignore | 2 +- README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index bd8b99f..1c615a0 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,4 @@ **/*.rs.bk *.profraw -example.ndjson +example.* diff --git a/README.md b/README.md index cf77c2d..0b4473b 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ docker run ghcr.io/dioptra-io/pantrace:main --help ```bash # Fetch traceroute results from the RIPE Atlas API curl -L -o example.ndjson \ - "https://atlas.ripe.net/api/v2/measurements/23119200/results/?start=1625097600&stop=1625788799&format=txt&probe_ids=6479" + "https://atlas.ripe.net/api/v2/measurements/23119199/results/?start=1625097600&stop=1625788799&format=txt&probe_ids=6479" # Convert from the standard input to the standard output -cat example.ndjson | pantrace --standalone --from atlas --to warts > example.warts +cat example.ndjson | pantrace --standalone --from atlas --to warts-trace > example.warts # Convert from a file to a file -pantrace --standalone --from atlas --to warts --input example.ndjson --output example.warts +pantrace --standalone --from atlas --to warts-trace --input example.ndjson --output example.warts ```