root@debian:/# find / -path /mnt/disk -prune -type f -name 2GSRM4Z7.zip
root@debian:/# find / -path ./mnt/disk -prune -type f -name 2GSRM4Z7.zip
root@debian:/# find / -type f -name 2GSRM4Z7.zip
为什么只有第3个命令能找到文件?
how-to-use-prune-option-of-find-in-sh
find / -path /mnt/disk -prune -o -name '2GSRM4Z7.zip' -print
上面的命令,能找到文件。