- Create a directory TEST
- Change to directory TEST
- Create empty files file1 and file2 under Present Working Directory
- Display the files file1 and file2.
- Append more lines in the file1
- Append more lines in the file2
- List contents of file1 and file3 together
- copy and append content of file1 file2 to file3
- mkdir TEST
- cd TEST
- touch file1 file2
- ls -al
- echo "This is file1" >> file1
- echo "This is file2" >> file2
- cat file1 file2
- cat file1 file2 >> file3