圧縮/展開コマンド一覧

●lha圧縮
lha c dst.lzh src
●lha展開
lha x src.lzh
lha xw=dst src.lzh

●zip圧縮
zip dst.zip src
●zip展開
unzip src.zip
unzip src.zip -d dst

●Z圧縮
compress -vf src
●Z展開
compress -d src.Z

●tar圧縮
tar -cvf dst.tar src
●tar展開
tar -xvf src.tar
tar -xvf src.tar -C dst

●gz圧縮
gzip src
●gz展開
gunzip src.gz

●bz2圧縮
bzip2 src
●bz2展開
bunzip2 src.bz2
※(bzip2、bunzip2で入力ファイルを残すには-kを指定します)

●tar.gz圧縮
tar -cvzf dst.tar.gz src
●tar.gz展開
tar -xvzf src.tar.gz
tar -xvzf src.tar.gz -C dst

●tar.bz2圧縮
tar -cvjf dst.tar.bz2 src
●tar.bz2展開
tar -xvjf src.tar.bz2
tar -xvjf src.tar.bz2 -C dst


●tarコマンドライン
-c --create	     新しい書庫の作成
-x --extract	     書庫からのファイルの取り出し
-t --list	     書庫内の内容のリスト

-v --verbose	     処理されているファイルのリストを冗長に表示

-z --gzip	     filter the archive through gzip
-j --bzip2	     filter the archive through bzip2

-f --file=ARCHIVE    書庫ファイルまたはデバイス ARCHIVE を使用
-C --directory=DIR   change to directory DIR

Last modified: Mon Mar 04 19:42:49 2002