find . -type d
可以用来查找所有目录下面一些起点。但它也返回当前目录(。),这可能是不希望的。如何排除?
POSIX 7 solution:
原文链接:https://www.f2er.com/bash/392637.htmlfind . ! -path . -type d
对于这种特殊情况(。),高尔夫球比理想的解决方案(24对26个字符),虽然这可能是更难输入,因为!
要排除其他目录,这将高尔夫不太好,需要DRYness的变量:
D="long_name" find "$D" ! -path "$D" -type d
我的决策树之间!和-mindepth:
>脚本?使用 !便携性。
>在GNU上的交互式会话?
>排除。投掷硬币。>排除long_name?使用-mindepth。