加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

log备份压缩以及获取指定内容到新文件

发布时间:2020-12-15 07:15:36 所属栏目:安全 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #!/bin/sh #============ get the file name =========== Folder_A="/mnt/log/" #这是我log存放的地方#Output_file="mysql.txt" t=$(date +%Y%m%d%H%M

以下代码由PHP站长网 52php.cn收集自互联网

现在PHP站长网小编把它分享给大家,仅供参考

#!/bin/sh  
#============ get the file name ===========  
Folder_A="/mnt/log/"  #这是我log存放的地方
#Output_file="mysql.txt"  
t=$(date +%Y%m%d%H%M%S)      #时间戳,命名用
d=$(date +%Y%m%d)                                                                                                                                  
for file_a in ${Folder_A}/*; do  #获取该文件夹下的所有日志文件
    temp_file=`basename $file_a`  
    #echo $temp_file >> $Output_file  
    while read line    #读行
	do
	grep "sessionid">>/mnt/datas/mysql_$d.txt;   #获取含sessionid的行输出到txt文件
    	done < ${Folder_A}/$temp_file
done
ls ${Folder_A}/    #压缩
    if [ $? -eq 0 ];then
        tar -zcvf log_$t.tar.gz ${Folder_A}/  #压缩
    else
        echo   "yourdir is empty!" >>log.log  #该shell运行的log
    fi
for file_b in ${Folder_A}/*; do  #清空日志文件,不是删除
    temp_file=`basename $file_a`
    cat /dev/null >${Folder_A}/$temp_file
done

以上内容由PHP站长网【52php.cn】收集整理供大家参考研究

如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读