tar – it is used for archieving files and directories into a single file
Format : tar [options] destination source
Eg1: tar –cvf backup.tar /etc
Here it creates a backup for the directory /etc and store it in the present working directory.
Eg2: tar –xvf backup.tar
Here it will untar the backup file
