You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
du -hs /path/to/folder
-s: summary
-h: humanreadable
Recursive copy
cp -r source_DIR dest_DIR
Tar and untar
tar -zcvf prog-1-jan-2005.tar.gz /home/jerry/prog
tar -zxvf prog-1-jan-2005.tar.gz or tar -zxvf prog-1-jan-2005.tar.gz -C /tmp
-z: Compress archive using gzip program
-c: Create archive
-v: Verbose i.e display progress while creating archive
-x: Extract files
-f: Archive File name