tanom@DWH2K Group=Administrators での結果です。
$ mount
e:\cygwin\usr\X11R6\lib\X11\fonts on /usr/X11R6/lib/X11/fonts type system (binmode)
e:\cygwin\bin on /usr/bin type system (binmode)
e:\cygwin\lib on /usr/lib type system (binmode)
e:\cygwin on / type system (binmode)
c: on /cygdrive/c type user (binmode,noumount)
d: on /cygdrive/d type user (binmode,noumount)
e: on /cygdrive/e type user (binmode,noumount)
f: on /cygdrive/f type user (binmode,noumount)
g: on /cygdrive/g type user (binmode,noumount)
h: on /cygdrive/h type user (binmode,noumount)
i: on /cygdrive/i type user (binmode,noumount)
j: on /cygdrive/j type user (binmode,noumount)
k: on /cygdrive/k type user (binmode,noumount)
l: on /cygdrive/l type user (binmode,noumount)
m: on /cygdrive/m type user (binmode,noumount)
$ find / -maxdepth 1 -print
/
/bin
/cygwin.bat
/cygwin.ico
/etc
/home
/lib
/sbin
/tmp
/usr
/var
やはり / からはじめて /bin と /lib の下だけを検索した時だけ問題が起きてます。
$ find / ! \( -path / -o -path /bin -o -path '/bin/*' -o -path /lib -o -path '/lib/*' \) -prune -o -print | tail
find: ./.. changed during execution of find
/bin/zipcloak.exe
/bin/zipgrep
/bin/zipinfo
/bin/zipnote.exe
/bin/zipsplit.exe
/bin/zless
/bin/zmore
/bin/znew
/bin/zsh-4.0.6.exe
/bin/zsh.exe
$ find / \( -path /cygdrive -o -path /bin -o -path /lib \) -prune -o -print | tail
/var/www/icons/up.gif
/var/www/icons/up.png
/var/www/icons/uu.gif
/var/www/icons/uu.png
/var/www/icons/uuencoded.gif
/var/www/icons/uuencoded.png
/var/www/icons/world1.gif
/var/www/icons/world1.png
/var/www/icons/world2.gif
/var/www/icons/world2.png
|