Chinaunix首页 | 论坛 | 博客
  • 博客访问: 37950
  • 博文数量: 8
  • 博客积分: 190
  • 博客等级: 入伍新兵
  • 技术积分: 95
  • 用 户 组: 普通用户
  • 注册时间: 2011-12-18 15:58
文章分类

全部博文(8)

文章存档

2012年(2)

2011年(6)

我的朋友

分类: Python/Ruby

2011-12-19 08:43:53

#!/bin/sh
sys=`uname`
if [ "$sys" = "Linux" ];then
        . ${HOME}/.bash_profile
else
        . ${HOME}/.profile
fi

dateStr=`date +"%Y%m%d%H%M"`
fsize=`du -ks /opt/tmailer/log/freshclam.log|awk '{print $1}'`

if [ $fsize -gt 1024 ];then
cp /opt/tmailer/log/freshclam.log  /opt/tmailer/log/freshclam.$dateStr > /dev/null 2>&1 &
cat /dev/null > /opt/tmailer/log/freshclam.log
fi
chown -Rf tmailer:tmailer /opt/tmailer/log >/dev/null 2>&1 &
阅读(3461) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~