cat [option …] [ input ] …
With no input specified, or when input - reads standard input.
Does not support --.
-e end-of-line $ AND show unprintables,
-t shows [TABS] and nonprintables,
-v shows unprintables and control chars with ^
-l lock output,
-u output not buffered.
-E |
part1, then standard input, then the contents of file part2
cat part1 - part2
cat -An sampleFile
1 11111111$
2 $
3 33333333$
4 444444 $
5 tab^Ix$
cat file1 file2 >file1overwrites
file1 with the contents of file2.
file1 and file2 into file1
cat file1 file2 >>file1continues appending
file1 to file1 until the file system runs out of free space! or interrupted.