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...