码迷,mamicode.com
首页 > 系统相关 > 详细

清除日志shell脚本

时间:2016-06-23 18:59:01      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:necessary   change   cannot   null   用户   

#!/bin/bash

#清除日志脚本


LOG_DIR=/var/log

ROOT_UID=0  #$UID为0的时候,用户具有root用户的权限


if [ "$UID" -ne "$ROOT_UID" ]

then

     echo "Must be root to run this script"

     exit 1


fi


cd $LOG_DIR || {     #|| 失败的意思

   echo "cannot change to necessary directory " >&2

   exit 1

}


cat /dev/null >messages &&echo "logs cleaned up"


exit 0


清除日志shell脚本

标签:necessary   change   cannot   null   用户   

原文地址:http://21024.blog.51cto.com/11024/1792286

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!