mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
456 B
Plaintext
26 lines
456 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# trawl
|
|
|
|
> Print out network interface information to the console, much like ifconfig/ipconfig/ip/ifdata.
|
|
> More information: <https://github.com/robphoenix/trawl>.
|
|
|
|
- Show column names:
|
|
|
|
`trawl -n`
|
|
|
|
- Filter interface names using a case-insensitive `regex`:
|
|
|
|
`trawl -f wi`
|
|
|
|
- List available interfaces:
|
|
|
|
`trawl -i`
|
|
|
|
- Include the loopback interface:
|
|
|
|
`trawl -l`
|