Home ›
Untar a file in GNU-Linux. Or Unix. Using shell. Or other stuff.Untar a file in GNU-Linux. Or Unix. Using shell. Or other stuff.
Submitted by Benjamin Melançon on August 10, 2007 - 8:24pm
tar -zxvf files.tar.gz
Note to self: Don't forget again.
And to tar and zip a directory file 'files' in the first place:
tar -zcvf files.tgz files
And extra bonus, to move the files directory onto a server:
scp files.tgz ben@server.agariclabs.org:~
tar -zxvf files.tar.gz
Note to self: Don't forget again.
And to tar and zip a directory file 'files' in the first place:
tar -zcvf files.tgz files
And extra bonus, to move the files directory onto a server:
scp files.tgz ben@server.agariclabs.org:~
Comments
Post new comment