清空centos系统日志记录shell
顺手一个for循环解决清空各种系统日志。
LIST="boot.log btmp cron dmesg lastlog maillog messages secure spooler tallylog wtmp yum.log"
for NAME in $LIST; do echo> /var/log/$NAME;done
history -c
如果是已使用比较久的系统需要加入一些删除命令。
none
顺手一个for循环解决清空各种系统日志。
LIST="boot.log btmp cron dmesg lastlog maillog messages secure spooler tallylog wtmp yum.log"
for NAME in $LIST; do echo> /var/log/$NAME;done
history -c
如果是已使用比较久的系统需要加入一些删除命令。