Answers for "extract a specific file from tar.gz"

11

tar extract gz

# compress
tar czvf < archive_name >.tar.gz < path >
# extract
tar xzvf < archive_name >.tar.gz
tar xzvf < archive_name >.tar.gz  -C /home/usera/tmp
Posted by: Guest on January-17-2022
1

tar.gz extract

tar -xf archive.tar.gz -C /home/linuxize/files
Posted by: Guest on November-27-2021

Code answers related to "extract a specific file from tar.gz"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language