mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
11 lines
319 B
Plaintext
11 lines
319 B
Plaintext
|
# cat - concatenate and print files
|
||
|
cat [-benstuv] [filename]
|
||
|
|
||
|
-b : Number non blank lines (1 indexed)
|
||
|
-e : Display non printing chars
|
||
|
-n : Number output (1 indexed)
|
||
|
-s : Single spaced output
|
||
|
-t : Display non printing chars (Tab as `^I')
|
||
|
-u : Disable output buffering
|
||
|
-v : Display all non printing chars no matter what
|