File Operations
touch file1 |
Create file1 |
cat file1 file2 |
Concatenate files and output |
less file1 |
View and paginate file1 |
file file1 |
Get type of file1 |
head file1 |
Show first 10 lines of file1 |
tail file1 |
Show last 10 lines of file1 |
tail -F file1 |
Output last lines of file1 as it changes |
Comments