InterviewSolution
Saved Bookmarks
| 1. |
Which command will be used for extracting files from an archive named abc.tar?(a) tar -xvfabc.tar(b) tar -cvfabc.tar(c) tar-tvfabc.tar(d) tar-tabc.tarThe question was asked in homework.Asked question is from Compressing and Archiving Files in chapter Handling Ordinary Files of Unix |
|
Answer» CORRECT choice is (a) tar -xvfabc.tar The best EXPLANATION: To EXTRACT files from an archive, we can use -x OPTION along with -v and -f. Above command will extract all the files which are present in the archive named abc.tar. |
|