摘要: #!/bin/sh find /cicd/BuildRoot -maxdepth 1 -type d | while read dir; do count=$(find "$dir" -type f | wc -l) echo "$dir : $count" done 阅读全文
posted @ 2020-09-21 10:22 wolbo 阅读(429) 评论(0) 推荐(0)