cheat/cheat/cheatsheets/cat

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