http://www.cyberciti.biz/faq/howto-extract-tar-file-to-specific-directory-on-unixlinux
I want to extract tar file to specific directory called /tmp/data. How can I extract a tar archive to a different directory using tar command on a Linux or Unix-like systems?
You do not need to change the directory using cd command and extract files. Untarring a file can be done using the following syntax:
tar -xf file.name.tar -C /path/to/directory
GNU/tar syntax:
tar xf file.tar -C /path/to/directory
tar xf file.tar --directory /path/to/directory
You can extract specific files too use:
I want to extract tar file to specific directory called /tmp/data. How can I extract a tar archive to a different directory using tar command on a Linux or Unix-like systems?
You do not need to change the directory using cd command and extract files. Untarring a file can be done using the following syntax:
Syntax
Typical Unix tar syntax:tar -xf file.name.tar -C /path/to/directory
GNU/tar syntax:
tar xf file.tar -C /path/to/directory
tar xf file.tar --directory /path/to/directory
Example: Extract files to another directory
In this example, I'm extracting $HOME/etc.backup.tar file to a directory called /tmp/data. First, you have to create the directory manually, enter:
mkdir /tmp/data
To extract a tar archive $HOME/etc.backup.tar into a /tmp/data, enter:tar -xf $HOME/etc.backup.tar -C /tmp/dataTo see a progress pass the -v option:
tar -xvf $HOME/etc.backup.tar -C /tmp/dataSample outputs:
You can extract specific files too use:
tar -xvf $HOME/etc.backup.tar file1 file2 file3 dir1 -C /tmp/dataTo extract a foo.tar.gz (.tgz extension file) tarball to /tmp/bar, enter:
mkdir /tmp/bar tar -zxvf foo.tar.gz -C /tmp/barTo extract a foo.tar.bz2 (.tbz, .tbz2 & .tb2 extension file) tarball to /tmp/bar, enter:
mkdir /tmp/bar tar -jxvf foo.tar.bz2 -C /tmp/barSee tar command man page for more information.
No comments:
Post a Comment