linux下用find命令搜索当前目录下的子目录,但不要当前目录

2024-11-17 14:44:19
推荐回答(2个)
回答(1):

find /root -mindepth 1


mindepth 是指定最小的遍历深度. /root 本身的深度是0, 所以当最小遍历深度为1的时候正好排除 /root.


使用 find /root/* 可以达到同样效果, 不过其实不是通过 find 本身, 而是由 bash 先把通配符展开为 /root 下所有的文件和文件夹再传给 find.

回答(2):

find /root/*