This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tar -zxvf big_file.tar.gz /path/your_file.txt |
big_file.tar.gz is the tarball you are extracting from
path is the path to your file in the tarball
your_file.txt is the file you want to extract
This can also be done using wildcards. For example, if I wanted all text files in the above path I could substitute *.txt for your_file.txt.
No comments:
Post a Comment