查看文件数量 查看当前目录下有哪些目录
ls -l |grep "^d"
ls -l |grep "^d" |wc -l
find ./ -type file |wc -l
find ./ -name "*.h" |wc -l
find ./ -type file |more