Basic Unix Commands
Objective:
The objective of this lab is to work with files of UNIX file
system.
Procedure:
1. OpenyourUnixshellandtrythesecommands:
Ø Create a new file and add some text in it vcat >
filename
Ø View a file
vcat /etc/passwd vmore /etc/passwd vmore filename
Ø Copy file, making file2 vcp file1 file2
Ø Move/rename file1 as file2 vmv file1 file2
Ø Delete file1 as file2 vrm file
//Deletefile //Double-checkfirst
vrm -i file
Ø Counts the lines, words, characters in...