Most viewed posts
Search
Linux Command: cat
| See the examples |
cat [options] [files]
-t Same as -vT. |
Examples: |
cat ch1 Display a file cat ch1 ch2 ch3 > all Combine files cat note5 >> notes Append to a file cat > temp1 Create file at terminal. To exit, enter EOF Ctrl-D). cat /proc/partitions Show all partitions registered on the system
|