tarの圧縮
$ tar cvf xxxx.tar ./xxxx
tarの解凍
$ tar xvf xxxx.tar
gzの圧縮
$ gzip xxxx
gzの解凍
$ gunzip xxxx.gz
zの圧縮
$ compress -vf ./xxxx
zの解凍
$ compress -d xxxx.Z
$ uncompress xxxx.Z
$ zcat aaa.Z > ./xxxx
tar.gzの圧縮
$ tar cvzf xxxx.tar.gz ./xxxx
tar.gzの解凍
$ tar xvzf xxxx.tar.gz
Tags:
Terminal,
tar,
Mac,
gz