本文介绍了在Linux中计算目录中文件的数量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我通常使用
ls directory | wc -l
但是还有另一个不使用wc
的命令吗?
But is there another command that doesn't use wc
?
推荐答案
这是一个:
ls -l . | egrep -c '^-'
注意:
ls -1 | wc -l
这意味着:ls
:列出目录
Which means:ls
: list files in dir
-1
:(这是一个),每行只有一个条目.如果您也想要隐藏文件,请将其更改为-1a
-1
: (that's a ONE) only one entry per line. Change it to -1a if you want hidden files too
|
:管道输出到...
|
: pipe output onto...
wc
:字数统计"
-l
:计数l
个ines.
这篇关于在Linux中计算目录中文件的数量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!