Backup of UNIX/コマンド/圧縮、アーカイブ/compress(No. 2)
- Backup list
- View the diff.
- View the diff current.
- View the diff for visual.
- View the source.
- Go to UNIX/コマンド/圧縮、アーカイブ/compress.
compress はファイル圧縮ツールです。uncompress で展開します。 圧縮率が低いので、gzip を使用しましょう。 .Z なファイルを作成します。
% compress [file]
[file] を削除し、[file].Z なファイルに圧縮します。
% uncompress [file].Z
[file].Z を削除し、[file] なファイルに解凍します。
% compress -c [file]
とすると、ファイル操作を行わず、標準出力に出力します。
% uncompress -c [file].Z
も同様です。また、これは、
% zcat [file].Z
と同等です。
written by s1080134
役に立たなかった場合コメントをお願いします。
#areaedit
#areaedit(end)