Answers for "tar how to extract one file"

9

tar extract

# 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
0

tar extract to specific location

tar xvf my.tar.gz -C /home/my/location/
Posted by: Guest on March-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language