分割
叨比叨
电脑疯子!~~~
展开
-
[Linux] nginx 日志分割脚本 [ 技术分享,知识分享 ]
脚本作用: 分割nginx日志文件,按天进行分割。 脚本内容: #!/bin/bash # This script run at 00:00 # The Nginx logs path logs_path="/www/wwwlogs" host=`ls -l $logs_path/*.access.log | awk -F " " '{print $9}'原创 2013-05-04 11:11:09 · 622 阅读 · 0 评论 -
[Linux] apache 日志分割脚本 [ 信息分享,知识分享 ]
脚本作用: 分割apache日志文件,按天进行分割。 脚本内容: #!/bin/bash # This script run at 00:00 # The Apache logs path logs_path="/www/wwwlogs" host=`ls -l $logs_path/*-access_log | awk -F " " '{print $9}' | awk -原创 2013-05-04 10:50:05 · 645 阅读 · 0 评论