The Computer Oracle

How do I unzip a tar gz archive to a specific destination?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Dreamlands

--

Chapters
00:00 How Do I Unzip A Tar Gz Archive To A Specific Destination?
00:26 Accepted Answer Score 235
00:37 Thank you

--

Full question
https://superuser.com/questions/348205/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux #tar #gzip

#avk47



ACCEPTED ANSWER

Score 235


You have two choices:

cd /root/Desktop/folder
tar xf /root/Documents/file.tar.gz

or

tar xf file.tar.gz -C /root/Desktop/folder