Quantcast
Channel: GoLinuxHub
Viewing all articles
Browse latest Browse all 392

How to extract files to different directory using tar in Unix/Linux

$
0
0
Most of us extract the compressed file in the same directory but what if you get into a situation you need to extract it at some other location?

You just need to add one extra argument
# tar -xzvf file.tar.gz -C /destination/path
For eg
# pwd
/home

# tar -czvf test.tar.gz test/
So, now our test directory is compressed. let us extract it inside /tmp staying under /home
[root@test home]# tar -xzvf test.tar.gz -C /tmp/
# cd /tmp
# ls -l
drwx------. 4 test test 4096 Sep 28 12:46 test

Easy and simple. Let me know your success and failures

Follow the below links for more tutorials



Viewing all articles
Browse latest Browse all 392

Trending Articles