Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在手册页中搜索 find 以获取 UNIX find 命令默认顺序的线索。
感谢是否有人知道这一点。
http://unixhelp.ed.ac.uk/CGI/man-cgi?find
find只是查看出现在目录中的文件和子目录,就像ls -U此选项可用时一样。
find
ls -U
find 命令使用该opendir()函数获取目录中的列表,该函数返回目录流,并遍历该流并评估每个条目。符合条件的将按照它们的评估顺序返回。因此,您从find命令中获得的顺序是底层文件系统如何呈现它们。
opendir()