#!bin/bash#功能:删除某个目录下大小为0的文件#作者:liusingbon#以/var/www/html为测试目录,脚本会清空该目录下所有0字节的文件dir="/var/www/html"find $dir -type f -size 0 -exec rm -rf {} \;