Created
March 19, 2019 06:40
-
-
Save ayuLiao/3bd3109e664a59f90991ab26f84924dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
统计某文件夹下文件的个数 | |
ls -l |grep "^-"|wc -l | |
统计某文件夹下目录的个数 | |
ls -l |grep "^d"|wc -l | |
统计文件夹下文件的个数,包括子文件夹里的 | |
ls -lR|grep "^-"|wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment