0
1

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 3 years have passed since last update.

tarコマンドの使い方

0
Posted at

アーカイブの作成

ターミナル
$  tar cvf アーカイブ名 対象ファイル1 対象ファイル2 ...
ターミナル
$ tar cvf sample.tar test_1.txt test_2.txt

アーカイブの展開

ターミナル
$  tar xvf アーカイブ名 対象ファイル1 対象ファイル2 ...
ターミナル
$ tar xvf sample.tar

圧縮したアーカイブの作成

ターミナル
$  tar cvzf アーカイブ名 対象ファイル1 対象ファイル2 ...
ターミナル
$ tar tar cvzf sample.tar.gz test_1.txt test_2.txt

圧縮したアーカイブの解凍及び展開

ターミナル
$  tar xvzf アーカイブ名 対象ファイル1 対象ファイル2 ...
ターミナル
$ tar tar xvzf sample.tar.gz

オプション

オプション 説明
c アーカイブを新規作成
x アーカイブを展開
v 実行時に詳細を表示
z 圧縮処理を行う
f アーカイブファイルを指定
t アーカイブファイルの一覧を表示
0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?