新随笔  :: 管理

2020年3月13日

摘要: find . -maxdepth 1 -type d | while read dir; do count=$(find "$dir" -type f | wc -l); echo "$dir : $count"; done -maxdepth 1 过滤目录的深度 -type d 文件类型为目录 - 阅读全文

posted @ 2020-03-13 15:33 SliverLee 阅读(934) 评论(0) 推荐(0) 编辑