Tar
You may archive many files into one file using the tar command.
Initially, tar archives were used to store files on magnetic tape. Tar stands for tape archiver. An online manual is available at www.gnu.org/manual/tar/index.html.
- To tar something up:
- tar -cvf (whatever name you wish).tar (Here you place the filename or directory you wish to tar. Put spaces between the filenames).
- To extract (or unpack) the contents of a tar archive:
- tar -xvf (the name of the file).tar