[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:29971] Re: backup ファイルの削除



At Mon, 24 Sep 2001 12:26:17 +0900,
KISE Hiroshi wrote:
> ふと思って実験したこと。
> 
>   mkdir hogera && cd hogera
>   touch a b 'a b'
>   ls -l
>   find . -type f -print  | xargs    ls -l
> 
> で、こうする。
> 
>   find . -type f -print0 | xargs -0 ls -l

どちらも同じ結果ですよ。

それよりも

$ perl5.6.1 -e \
'$t="trap\n";mkdir($t);mkdir("$t/boot");open(F,">$t/boot/map")'
$ find trap* -type f -print|xargs ls -l
ls: ./trap: そのようなファイルやディレクトリはありません
-rw-------    1 root     root        16896  9月 22 15:39 /boot/map
 $ find trap* -type f -print0 | xargs -0 ls -l
-rw-r--r--    1 fumiya   fumiya          0  9月 24 13:01 ./trap?/boot/map
$ find trap* -type f -print0 | xargs -0 ls -l --show-control-chars
-rw-r--r--    1 fumiya   fumiya          0  9月 24 13:01 ./trap
/boot/map

-- 
SATOH Fumiyasu - fumiya @net-thrust.com, @samba.gr.jp, @namazu.org or ...
THRUST Co., Ltd. @ Fujisawa, Kanagawa, Japan - http://www.net-thrust.com
Samba-JP, aka `Samba Users Group Japan'      - http://www.samba.gr.jp
Apache-JP(?), aka `Japan Apache Users Group' - http://www.apache.jp
Namazu, a full-text search engine            - http://www.namazu.org