2008年2月15日金曜日

tar -C

% uname -r
6.2-RELEASE-p9

% ls portv_Jan-*
portv_Jan-01.txt        portv_Jan-09.txt        portv_Jan-17.txt        portv_Jan-25.txt
portv_Jan-02.txt        portv_Jan-10.txt        portv_Jan-18.txt        portv_Jan-28.txt
portv_Jan-03.txt        portv_Jan-11.txt        portv_Jan-21.txt        portv_Jan-29.txt
portv_Jan-04.txt        portv_Jan-14.txt        portv_Jan-22.txt        portv_Jan-30.txt
portv_Jan-07.txt        portv_Jan-15.txt        portv_Jan-23.txt        portv_Jan-31.txt
portv_Jan-08.txt        portv_Jan-16.txt        portv_Jan-24.txt

% cd portv

% tar -cf portv_jan.tgz -C /home/kaz portv_Jan-*.txt
zsh: no matches found: portv_Jan-*.txt

% tar -cf portv_jan.tgz -C /home/kaz portv_Jan-25.txt
% tar tzvf portv_jan.tgz
-rw-r--r--  0 root   kaz      2884  1 25 03:10 portv_Jan-25.txt

% tar -cf portv_jan.tgz -C /home/kaz portv_Jan-[0-3][0-9].txt
zsh: no matches found: portv_Jan-[0-3][0-9].txt

% tar -cf portv_jan.tgz -C /home/kaz portv_Jan-{0..3}{0..9}.txt
tar: portv_Jan-00.txt: Cannot stat: No such file or directory
tar: portv_Jan-05.txt: Cannot stat: No such file or directory
tar: portv_Jan-06.txt: Cannot stat: No such file or directory
tar: portv_Jan-12.txt: Cannot stat: No such file or directory
tar: portv_Jan-13.txt: Cannot stat: No such file or directory
tar: portv_Jan-19.txt: Cannot stat: No such file or directory
tar: portv_Jan-20.txt: Cannot stat: No such file or directory
tar: portv_Jan-26.txt: Cannot stat: No such file or directory
tar: portv_Jan-27.txt: Cannot stat: No such file or directory
tar: portv_Jan-32.txt: Cannot stat: No such file or directory
tar: portv_Jan-33.txt: Cannot stat: No such file or directory
tar: portv_Jan-34.txt: Cannot stat: No such file or directory
tar: portv_Jan-35.txt: Cannot stat: No such file or directory
tar: portv_Jan-36.txt: Cannot stat: No such file or directory
tar: portv_Jan-37.txt: Cannot stat: No such file or directory
tar: portv_Jan-38.txt: Cannot stat: No such file or directory
tar: portv_Jan-39.txt: Cannot stat: No such file or directory
% tar tzvf portv_jan.tgz
-rw-r--r--  0 root   kaz      2862  1  1 02:53 portv_Jan-01.txt
-rw-r--r--  0 root   kaz      2862  1  2 02:53 portv_Jan-02.txt
-rw-r--r--  0 root   kaz      2862  1  3 03:00 portv_Jan-03.txt
-rw-r--r--  0 root   kaz      2862  1  4 02:58 portv_Jan-04.txt
-rw-r--r--  0 root   kaz      2862  1  7 03:00 portv_Jan-07.txt
-rw-r--r--  0 root   kaz      2875  1  8 02:54 portv_Jan-08.txt
-rw-r--r--  0 root   kaz      2875  1  9 02:57 portv_Jan-09.txt
-rw-r--r--  0 root   kaz      2886  1 10 03:00 portv_Jan-10.txt
-rw-r--r--  0 root   kaz      2886  1 11 02:56 portv_Jan-11.txt
-rw-r--r--  0 root   kaz      2875  1 14 03:03 portv_Jan-14.txt
-rw-r--r--  0 root   kaz      2895  1 15 03:02 portv_Jan-15.txt
-rw-r--r--  0 root   kaz      2895  1 16 03:03 portv_Jan-16.txt
-rw-r--r--  0 root   kaz      2895  1 17 03:02 portv_Jan-17.txt
-rw-r--r--  0 root   kaz      2895  1 18 03:03 portv_Jan-18.txt
-rw-r--r--  0 root   kaz      2895  1 21 03:06 portv_Jan-21.txt
-rw-r--r--  0 root   kaz      2895  1 22 03:01 portv_Jan-22.txt
-rw-r--r--  0 root   kaz      2884  1 23 03:09 portv_Jan-23.txt
-rw-r--r--  0 root   kaz      2884  1 24 03:07 portv_Jan-24.txt
-rw-r--r--  0 root   kaz      2884  1 25 03:10 portv_Jan-25.txt
-rw-r--r--  0 root   kaz      2873  1 28 03:06 portv_Jan-28.txt
-rw-r--r--  0 root   kaz      2889  1 29 03:04 portv_Jan-29.txt
-rw-r--r--  0 root   kaz      2900  1 30 03:09 portv_Jan-30.txt
-rw-r--r--  0 root   kaz      2900  1 31 03:08 portv_Jan-31.txt

0 件のコメント: