tar extract to directory code example

Example 1: extract tar.gz ubuntu terminal

tar -xvf yourfile.tar.gz

Example 2: how to unzip Tar file

## Untar files in Current Directory ##
tar -xvf filename.tar.gz

## Untar files in specified Directory ##
tar -xvf filename.tar.gz -C /path_name_for_unzip/

-x : extract
-C : specified directory
-v : Verbosely show the .tar file progress.
-f : filename of archive file

Example 3: untar .tar file

tar -xvf yourfile.tar

Example 4: tar to directory

tar -xf file_name.tar -C /target/directory

Example 5: tar extract to specific location

tar xvf my.tar.gz -C /home/my/location/

Tags:

Misc Example