Skip to content

Commit ef4d4cb

Browse files
authored
scamper, sc_*: clarify that warts is a file format (#19774)
1 parent 1d6433d commit ef4d4cb

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

pages/common/sc_analysis_dump.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
> Dump of traceroute data in an easily parsed format.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Output the traceroute of `warts` files one after the other in an easy-to-parse format:
6+
- Output the traceroute of `.warts` files one after the other in an easy-to-parse format:
77

88
`sc_analysis_dump {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_tracediff.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
> Display traceroute paths where the path has changed.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Show the difference between traceroutes in two `warts` files:
6+
- Show the difference between traceroutes in two `.warts` files:
77

88
`sc_tracediff {{path/to/file1.warts}} {{path/to/file2.warts}}`
99

10-
- Show the difference between the traceroutes in two `warts` files, including those that have not changed:
10+
- Show the difference between the traceroutes in two `.warts` files, including those that have not changed:
1111

1212
`sc_tracediff -a {{path/to/file1.warts}} {{path/to/file2.warts}}`
1313

14-
- Show the difference between the traceroutes in two `warts` files and try to show DNS names and not IP addresses if possible:
14+
- Show the difference between the traceroutes in two `.warts` files and try to show DNS names and not IP addresses if possible:
1515

1616
`sc_tracediff -n {{path/to/file1.warts}} {{path/to/file2.warts}}`

pages/common/sc_ttlexp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# sc_ttlexp
22

3-
> Dump source addresses from ICMP TTL expired messages in `warts` files.
3+
> Dump source addresses from ICMP TTL expired messages in `.warts` files.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Output the source address of ICMP TTL expire messages in `warts` files one after the other:
6+
- Output the source address of ICMP TTL expire messages in `.warts` files one after the other:
77

88
`sc_ttlexp {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_warts2csv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
> Dump traceroutes collected by `scamper` in CSV format.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Convert traceroute data in `warts` files to CSV and output it:
6+
- Convert traceroute data in `.warts` files to CSV and output it:
77

88
`sc_warts2csv {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_warts2json.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# sc_warts2json
22

3-
> JSON dump of information contained in a `warts` file.
3+
> JSON dump of information contained in a `.warts` file.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Convert `warts` files to JSON and output the result:
6+
- Convert `.warts` files to JSON and output the result:
77

88
`sc_warts2json {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_warts2pcap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# sc_warts2pcap
22

3-
> Write packets included in `warts` object to a PCAP file.
4-
> This is only possible for tbit, sting and sniff.
3+
> Write packets included in `.warts` files to a PCAP file.
4+
> This is only possible for packets of type `tbit`, `sting` or `sniff`.
55
> More information: <https://www.caida.org/catalog/software/scamper/>.
66
7-
- Convert the data from several `warts` files into one PCAP file:
7+
- Convert the data from several `.warts` files into one PCAP file:
88

99
`sc_warts2pcap -o {{path/to/output.pcap}} {{path/to/file1.warts path/to/file2.warts ...}}`
1010

11-
- Convert the data from a `warts` file into a PCAP file and sort the packets by timestamp:
11+
- Convert the data from a `.warts` file into a PCAP file and sort the packets by timestamp:
1212

1313
`sc_warts2pcap -s -o {{path/to/output.pcap}} {{path/to/file.warts}}`

pages/common/sc_warts2text.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# sc_warts2text
22

3-
> Simple dump of information contained in a `warts` file.
3+
> Simple dump of information contained in a `.warts` file.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Output the information in `warts` files as text:
6+
- Output the information in `.warts` files as text:
77

88
`sc_warts2text {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_wartscat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# sc_wartscat
22

3-
> Concatenate `warts` files.
3+
> Concatenate `.warts` files.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Concatenate `warts` files into one:
6+
- Concatenate `.warts` files into one:
77

88
`sc_wartscat -o {{path/to/output.warts}} {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_wartsdump.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# sc_wartsdump
22

3-
> Verbose dump of information contained in a `warts` file.
3+
> Verbose dump of information contained in a `.warts` file.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
6-
- Output the content of `warts` files verbose:
6+
- Output the content of `.warts` files verbose:
77

88
`sc_wartsdump {{path/to/file1.warts path/to/file2.warts ...}}`

pages/common/sc_wartsfilter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sc_wartsfilter
22

3-
> Select specific records from a `warts` file.
3+
> Select specific records from a `.warts` file.
44
> More information: <https://www.caida.org/catalog/software/scamper/>.
55
66
- Filter all data records that had specific destinations and write them to a separate file:

0 commit comments

Comments
 (0)