unix系统使用shell判断文件大小

2024-11-07 23:46:48
推荐回答(1个)
回答(1):

定时任务用 crontab, 不多说了。

判断文件大小,看我下面的例子,检查文件 filename 是否小于 1024 字节:

fsize=$(/bin/ls -l filename | cut -d' ' -f 5)

if [ $fsize -lt 1024 ]; then
echo "too small"
fi