美文网首页Ceph学习之路
日志文件超过大小重定向

日志文件超过大小重定向

作者: Cindy_lina | 来源:发表于2017-12-02 22:07 被阅读8次

# 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

相关文章

网友评论

    本文标题:日志文件超过大小重定向

    本文链接:https://www.haomeiwen.com/subject/egsobxtx.html