The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 09-08-2007
robotronic's Avatar
robotronic robotronic is offline
Can I play with madness?
 

Join Date: Apr 2002
Location: Italy
Posts: 370
To pack all the files together:
Code:
tar cvf outputfile.tar filename1 filename2
To unpack:
Code:
tar xvf inputfile.tar
Where inputfile.tar is the file created before.

Note that tar only put files together, if you want compression you then need to compress the resulting tarfile with something like compress, gzip, bzip, etc...
Reply With Quote