假设我移动到以下路径的空目录:/home/user/dir
/home/user/dir
如果我执行:find . ! -name "*.txt"结果是:
find . ! -name "*.txt"
.
但如果我执行,find /home/user/dir ! -name "*.txt"我不会得到任何结果。
find /home/user/dir ! -name "*.txt"
为什么 find 有这种行为?哪里指定的?
而且,为什么..不包括在内?
..
find
find ×1