2008年1月18日金曜日

aix 5.2のtarメモ

リストファイルでtarを取る方法(常識かもしれないですが)。
-cvfの"-(ハイフン)"が重要です。
root@host: /tmp/tmp # ls
bar foo fuga hoge piyo tar.list
root@host: /tmp/tmp # cat tar.list
bar
foo
fuga
hoge
piyo
root@host: /tmp/tmp # tar -cvf all.tar -Ltar.list
bar 0 ブロック。
foo 0 ブロック。
fuga 0 ブロック。
hoge 0 ブロック。
piyo 0 ブロック。
root@host: /tmp/tmp # tar tvf all.tar
-rw-r--r-- 0 0 0 Jan 18 10:43:41 2008 bar
-rw-r--r-- 0 0 0 Jan 18 10:43:41 2008 foo
-rw-r--r-- 0 0 0 Jan 18 10:43:41 2008 fuga
-rw-r--r-- 0 0 0 Jan 18 10:43:41 2008 hoge
-rw-r--r-- 0 0 0 Jan 18 10:43:41 2008 piyo

0 件のコメント: