Linuxでの圧縮・解凍
圧縮
file1、file2、dir1、dir2 を comp.tar.gz ファイルに圧縮する。
tar -zcv file1 file2 dir1 dir2 > comp.tar.gz zip comp.zip file1 file2 ... zip -r comp.zip dir1
解凍
上記のように圧縮された comp.tar.gz ファイルを解凍する。
gzip -cd comp.tar.gz | tar xvf -
unzip comp.zip
file1、file2、dir1、dir2 を comp.tar.gz ファイルに圧縮する。
tar -zcv file1 file2 dir1 dir2 > comp.tar.gz zip comp.zip file1 file2 ... zip -r comp.zip dir1
上記のように圧縮された comp.tar.gz ファイルを解凍する。
gzip -cd comp.tar.gz | tar xvf -
unzip comp.zip