我想只列出指定路径中的目录(ls没有这样的选项)。 另外,这可以用单行命令完成吗?
当前回答
如果我有这个目录:
ls -l
lrwxrwxrwx 1 nagios nagios 11 août 2 18:46 conf_nagios -> /etc/icinga
-rw------- 1 nagios nagios 724930 août 15 21:00 dead.letter
-rw-r--r-- 1 nagios nagios 12312 août 23 00:13 icinga.log
-rw-r--r-- 1 nagios nagios 8323 août 23 00:12 icinga.log.gz
drwxr-xr-x 2 nagios nagios 4096 août 23 16:36 tmp
要获取所有目录,使用-L解析链接:
ls -lL | grep '^d'
drwxr-xr-x 5 nagios nagios 4096 août 15 21:22 conf_nagios
drwxr-xr-x 2 nagios nagios 4096 août 23 16:41 tmp
没有- l:
Ls -l | grep '^d'
drwxr-xr-x 2 nagios nagios 4096 août 23 16:41 tmp
Conf_nagios目录缺失。
其他回答
以下
find * -maxdepth 0 -type d
基本上过滤'*'的展开,即当前目录中的所有条目,通过类型d条件。
优点是,输出与ls -1 *相同,但只针对目录 条目不以点开头
这是大多数人想要的答案。
ls -l | grep -E '^d' | awk '{print $9}'
目录名,除了目录名什么都没有。
如果我有这个目录:
ls -l
lrwxrwxrwx 1 nagios nagios 11 août 2 18:46 conf_nagios -> /etc/icinga
-rw------- 1 nagios nagios 724930 août 15 21:00 dead.letter
-rw-r--r-- 1 nagios nagios 12312 août 23 00:13 icinga.log
-rw-r--r-- 1 nagios nagios 8323 août 23 00:12 icinga.log.gz
drwxr-xr-x 2 nagios nagios 4096 août 23 16:36 tmp
要获取所有目录,使用-L解析链接:
ls -lL | grep '^d'
drwxr-xr-x 5 nagios nagios 4096 août 15 21:22 conf_nagios
drwxr-xr-x 2 nagios nagios 4096 août 23 16:41 tmp
没有- l:
Ls -l | grep '^d'
drwxr-xr-x 2 nagios nagios 4096 août 23 16:41 tmp
Conf_nagios目录缺失。
查找指定路径-type d
如果你不想在子目录中递归,你可以这样做:
查找指定路径-type d -mindepth 1 -maxdepth 1
请注意,“点”目录(其名称以。开头)也将被列出;但不是特殊的目录。也不……如果你不想要“。”目录,你可以把它们grep出来:
查找指定路径-type d -mindepth 1 -maxdepth 1 | grep -v '^\.'
ls -l | grep '^d'
您可以创建一个别名并将其放入配置文件中
alias ld="ls -l| grep '^d'"
推荐文章
- 在命令行中使用Firefox截取完整页面的截图
- 文件中最长的一行
- 如何在父进程退出后使子进程死亡?
- [: shell编程中的意外操作符
- 如何在变量中存储标准错误
- Unix列表命令'ls'可以输出数值chmod权限吗?
- 在Unix中,我可以在一个目录中运行'make'而不首先cd'到该目录吗?
- 如何在Python中实现常见的bash习语?
- 如何通过docker运行传递参数到Shell脚本
- 快速unix命令显示文件中间的特定行?
- 如何从查找“类型d”中排除此/ current / dot文件夹
- 只使用md5sum获取哈希值(没有文件名)
- 如何生成一个核心转储在Linux上的分段错误?
- 在Python中如何在Linux和Windows中使用“/”(目录分隔符)?
- 使用sh shell比较字符串