linux bash shell 判断目录是否为空的函数

#!/bin/sh
##方法一 判断输出字符数统计为0
is_empty_dir(){
return `ls -A $|wc -w`
}
##方法二 判断输出string为空
#is_empty_dir(){
# return $[ -z `ls -A $` ]
#} if is_empty_dir $
then
echo " $1 is empty"
else
echo " $1 is not empty"
fi

注:参考连接:http://blog.csdn.net/10km/article/details/50427281

上一篇:Hack 语言学习/参考---1.Hack 语言


下一篇:最新区分兼容IE6/IE7/IE8/IE9/FF的CSS HACK写法和Css if hack条件语法操作说明