定时任务用 crontab, 不多说了。判断文件大小,看我下面的例子,检查文件 filename 是否小于 1024 字节:fsize=$(/bin/ls -l filename | cut -d' ' -f 5)if [ $fsize -lt 1024 ]; then echo "too small"fi