您的当前位置:首页日志文件超过大小重定向

日志文件超过大小重定向

2024-12-10 来源:哗拓教育

# check /tmp/ss.log greater than 1M,empty ss.log

# 1 kB = 1000 (103) byte
# 1 MB = 1 000 000 (106) byte
# 1 GB = 1 000 000 000 (109) byte
# 1 TB = 1 000 000 000 000 (1012) byte

file="/tmp/ss.log"

if

     [ $(wc $file | awk '{print $3}') -gt 1024000 ];

then

     cat /dev/null > $file

fi

显示全文