if [[ ! -s filename ]] <==如果文件存在且为空,-s代表存在不为空,!将他取反
then
ok
fi
if [ -z filename ]
then
echo "zero!!!"
fi
if [ ! -s "$1" ]