EADST

Linux: Check the Number of Folders and Files

Linux: Check the Number of Folders and Files

# check the file number in the current directory
ls -l |grep -c "^-"
# check the folder number in the current directory
ls -l |grep -c "^d"
# check the file number in the current directory and subdirectory
ls -lR | grep -c "^-"
# check the folder number in the current directory and subdirectory
ls -lR | grep -c "^d"
# check the file with "md" number in the current directory and subdirectory
ls -lR | grep "^-" | grep -c "md$"
# check the "py" file number in the current directory 
ls -l | grep -c "py"
相关标签
About Me
XD
Goals determine what you are going to be.
Category
标签云
站点统计

本站现有博文242篇,共被浏览288407

本站已经建立1774天!

热门文章
文章归档
回到顶部