美文网首页
Shell 常用脚本汇总 长期更新

Shell 常用脚本汇总 长期更新

作者: 陈小陌丿 | 来源:发表于2016-09-08 09:47 被阅读0次

    删除空文件

    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 常用脚本汇总 长期更新

          本文链接:https://www.haomeiwen.com/subject/dejsettx.html