What is the functionality of tar command

Showing Answers 1 - 1 of 1 Answers

Gaurav

  • Apr 17th, 2007
 

The tar command archives and extracts files to  and  from  a  single  file  called  a tarfile.

tar -cvf <abc.tar> /abc/*

This command would bundle all the cointents in '/abc' directory un abc.tar.
The bundled contents could be listed using 'tar -tvf abc.tar'

And Extracted by command 'tar -xvf abc.tar'.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions