|
cat - type files
- cat = concatenate
- cat file = print the file
- cat file1 file2 = prints file1 followed by file2
concatenates the two files
- cat file* > all
- cat /dev/null > new_file
- > new_file
- cat > new_file
to enter the file from the keyboard
end with ^D
|