To extract a single file from an archive:
# tar zxvf tarfile.tgz -–include=”somefile”
Use patterns:
# tar zxvf tarfile.tgz -–include=”somefile*”
the somefile must use full path. To check file’s fullpath:
# tar tf tarfile.tgz
Just another WordPress site
To extract a single file from an archive:
# tar zxvf tarfile.tgz -–include=”somefile”
Use patterns:
# tar zxvf tarfile.tgz -–include=”somefile*”
the somefile must use full path. To check file’s fullpath:
# tar tf tarfile.tgz