UNIX
SVR4 Unix Command
How to find a file?
find /user/home/ -name SVR4 -print
How to compare file?
diff f1 f2
How to create an archive file?
tar cvf tarfile_name.tar filenames (dir_name)
How to untar file?
tar xvf filename.tar
Unpacked compressed tar file
zcat project.tar.Z | tar xvf -
UnixResource