4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

1行でtarball(.tar.gz)の圧縮、解凍をする

Posted at

Solarisのtarコマンドにはgz圧縮、解凍の機能がない。
「-」オプションを利用すれば、1行で実現できる。

解凍

# gzip -dc hoge.tar.gz | tar xvf -

圧縮

# tar cvf - fuga/ | gzip -c > fuga.tar.gz
4
7
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
4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?