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

清理日志的shell

时间:2016-05-27 15:06:35      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:shell   log   clean   

shell学习之路


#!/bin/bash
# clear log

#变量保存目录
LOG_DIR = /var/log
#移到指定目录
cd $LOG_DIR
#清理指定文件
cat /dev/null > messages
cat /dev/null > wtmp

echo "Logs cleaned up."

exit

清理日志的shell

标签:shell   log   clean   

原文地址:http://ouyangjun.blog.51cto.com/10284323/1783689

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