add explaination for options used with tar (#29449)

options used with "tar" depends on the archive type, added reference for manpage of tar
x - to extract files from an archive
v - show verbose output
f - use archive file or device ARCHIVE
This commit is contained in:
prashant
2019-06-28 07:47:35 +05:30
committed by Randell Dawson
parent 7ccddecb6b
commit 74f842838e

View File

@ -8,6 +8,11 @@ Step 1: To Know the file type<br>
`file File-Name` `file File-Name`
Step 2: To Decompress a tar file<br> Step 2: To Decompress a tar file<br>
Here options used with "tar" depends on the archive type, use `man tar` for more details on how to use tar cammand.
x - to extract files from an archive
v - show verbose output
f - use archive file or device ARCHIVE
`tar xvf File-Name -C /Directory-Location` `tar xvf File-Name -C /Directory-Location`
`We Use (-C) for specific directory if we do not use (-C) then it automatically extract to current directory.` `We Use (-C) for specific directory if we do not use (-C) then it automatically extract to current directory.`