mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 19:43:06 +00:00
24 lines
439 B
Text
24 lines
439 B
Text
|
% tar, zip, gzip, compression
|
||
|
|
||
|
# Create a tar containing files
|
||
|
tar cf <name>.tar <files>
|
||
|
|
||
|
# Extract the files from a tar
|
||
|
tar xf <tar_file>
|
||
|
|
||
|
# Create a tar with Gzip compression
|
||
|
tar czf <name>.tar.gz <files>
|
||
|
|
||
|
# Extract a tar using Gzip
|
||
|
tar xzf <targz_file>
|
||
|
|
||
|
# Compress file and appends .gz to its name
|
||
|
gzip <path>
|
||
|
|
||
|
# Decompress compressed file
|
||
|
gzip -d <gz_file>
|
||
|
|
||
|
$ path: ls
|
||
|
$ tar_file: ls *.tar
|
||
|
$ targz_file: ls *.tar.gz
|
||
|
$ gz_file: ls *.gz
|