Question
How can I untar a tar.gz file, or to a specific folder?
Answer
You can use the tar command to extract the file, and append -C to set the directory:
tar -xzvf archive.tar.gz
tar -xzvf archive.tar.gz -C /path/to/destination
How can I untar a tar.gz file, or to a specific folder?
You can use the tar command to extract the file, and append -C to set the directory:
tar -xzvf archive.tar.gz
tar -xzvf archive.tar.gz -C /path/to/destination
Comments
0 comments
Article is closed for comments.