LoginSignup
22
24

More than 5 years have passed since last update.

tarの小技

Posted at

tarファイルのサイズをざっくり見積もる

tar cf - /ディレクトリ/tarファイル/ | wc -c

ハイフン(-)で標準出力に渡してあげます。

tar.gzファイルのサイズを見積もる

tar czf - /ディレクトリ/tarファイル/ | wc -c

ハイフン(-)で標準出力に渡してあげます。

カレントディレクトリとtarファイルの中身を比較する

tar dfz archive.tar.gz

dオプションで比較を行うことができます。

特定のディレクトリ、ファイルだけ解凍する

tar xvf archive.tar ディレクトリ/ディレクトリ or ファイル

tarファイルの中身を確認する

その1(t オプションを利用する方法)

tar tvf archive.tar.gz

その2(lessを利用する方法)

less archive.tar.gz
22
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
24