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.
我正在尝试打印要传递给 bash 脚本的目录路径中的目录列表。我知道
ls -dn */
将仅打印当前路径中的目录列表,但我想打印我提供给脚本的路径中的目录。
您还可以使用ls该变量来列出目录:
ls
p="somepath" ls -dn "$p"/*/
或使用查找:
find "$p" -type d -maxdepth 1