1. #!/bin/bash
    2. #/var/www/html 为测试目录,脚本会清空该目录下所有 0 字节的文件
    3. dir="/var/www/html"
    4. find $dir -type f -size 0 -exec rm -rf {} \;