mirror of
https://github.com/cheat/cheat.git
synced 2025-12-08 00:14:00 +01: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
|