linux 查看当前目录下每个子目录的文件数量

查看当前目录下每个子目录的文件数量
find . -maxdepth 1 -type d | while read dir; do count=$(find "$dir" -type f | wc -l); echo "$dir : $count"; done

你可能感兴趣的:(linux)