我需要找到一个给定的目录列表的空目录。
一些目录中有目录。
一些目录中有目录。
如果内部目录也是空的,我可以说主目录是空的,否则它不是空的。
如何测试这个?
例如:
A>A1(file1),A2 this is not empty beacuse of file1 B>B1(no file) this is empty C>C1,C2 this is empty
检查是否找到< dir> -type f输出任何东西,这里有一个例子:
原文链接:https://www.f2er.com/bash/391982.htmlfor dir in A B C; do [ -z "`find $dir -type f`" ] && echo "$dir is empty" done