
Important Linux features 213
DONE
INDEX
INDEX
bunzip2 fila
Some remarks:
• Uncompression does not require the suffix .Z or .gz
• compression factor depends on the file type (20-70%)
• gzip gives a better reduction in size than compress
13.1.11 tar
tar: This command allows to convert a directory (tree) into a file. This is a con-
venient tool for attaching many files to an email or transferring them via ftp
• copy the directory-tree dira into the file dira.tar
tar cvf dira.tar dira
• extract fila from dira.tar
tar xvf dira.tar fila
• copy the directory-tree dira into the file dira.tar and compresses (gzip) the file
tar cvzf dira.tar.gz dira
• copy the directory-tree dira into the file dira.tar and compresses (bzip2) the file
tar cvjf dira.tar.bz2 dira
• extract fila from compressed file dira.tar.gz
tar xvzf dira.tar fila
• list the occurrences of fila in dira.tar
tar tvf dira.tar fila
Commenti su questo manuale