mirror of
https://github.com/cheat/cheat.git
synced 2025-04-15 22:16:08 +02:00
9 lines
189 B
Plaintext
9 lines
189 B
Plaintext
# Display the contents of a file
|
|
cat /path/to/foo
|
|
|
|
# Display contents with line numbers
|
|
cat -n /path/to/foo
|
|
|
|
# Display contents with line numbers (blank lines excluded)
|
|
cat -b /path/to/foo
|