Shell 常用脚本汇总 长期更新

删除空文件

for filename in `ls`
do
    if test -d $filename
    then b=0
    else    
       a=$(ls -l $filename | awk '{ print $5 }')
            if test $a -eq 0
             then rm $filename
             fi
        fi      
done

你可能感兴趣的:(Shell 常用脚本汇总 长期更新)