#!/bin/bash
LOG_DIR=/var/log
ERROR_ROOT=86
ROOT_UID=0
LINES=50
ERROR_LOG=87
#判断执行脚本的用户是不是root管理员,不是则返回错误代码
if [ "$UID" -ne "$ROOT_UID" ];then
echo "This script must be run as root"
exit $ERROR_ROOT
fi
#判断命令行是否输入参数,没有输入参数,默认保存日志的最后50行
if [ -n "$1" ];then
lines=$1
else
lines=$LINES
fi
#进入到日志目录,进行相关的清空工作
cd $LOG_DIR
if [ `pwd` != "$LOG_DIR" ];then
echo "Cannot change to the $LOG_DIR"
exit $ERROR_LOG
fi
tail -$lines messages > mesg.temp
mv mesg.temp messages
cat /dev/null > wtmp
cat /dev/null > utmp
echo "Logs clened up"
清除系统日志
Posted 努力乄小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除系统日志相关的知识,希望对你有一定的参考价值。
以上是关于清除系统日志的主要内容,如果未能解决你的问题,请参考以下文章