mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-18 01:40:44 +01:00
8 lines
189 B
Text
8 lines
189 B
Text
# 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
|