Blogia
tecnolakis

Comando TAR

 

Crear

tar -cvf file.tar myfile.txt

In the above example, the system would create a tar named file.tar in the directory you currently are in. Wildcards could also be used in this command, for example: tar -cvwf file.tar *.txt would archive all txt files in the current directory

 

Extraer

 

tar xvf  file.tar

 

0 comentarios