Ubuntu查看当前目录文件个数

Ubuntu查看当前目录文件个数

查看当前目录下的文件数量
ls -l|grep “^-”| wc -l

查看当前目录下的文件数量(包含子目录)
ls -lR|grep “^-”| wc -l

查看当前目录下的文件夹个数
ls -l|grep “^d”| wc -l


root@doit-System-Product-Name:~/model$ ls -l|grep "^-"| wc -l
4
root@doit-System-Product-Name:~/model$ ls -lR|grep "^-"| wc -l
22
root@doit-System-Product-Name:~/model$ ls -l|grep "^d"| wc -l
4
root@doit-System-Product-Name:~/model$ 

你可能感兴趣的:(开发技巧)