mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +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
|