|
发表于 2008-2-3 11:39:29
|
显示全部楼层
$ mkdir -v a b c; touch ./{a,b,c}/touche; ls *
mkdir: 已创建目录 “a”
mkdir: 已创建目录 “b”
mkdir: 已创建目录 “c”
a:
touche
b:
touche
c:
touche
$ find . -path ./a -prune -o -name 'touche' -print
./b/touche
./c/touche
$ find --version | sed -n -e '1p'
GNU find 版本 4.2.29 |
|