Tar y Gzip
On the command line To pack tar files, use the following commands: for an uncompressed tar file: tar -cf packed_files.tar file_to_pack1 file_to_pack2 … to pack and compress (one step at a time): tar -cf packed_files.tar file_to_pack1 file_to_pack2 …gzip packed_files.tar to pack and compress all at once: tar -cf – file_to_pack1 file_to_pack2 … | gzip -c… Leer más »