Linux logs are broken down by day to shell

  • 2020-05-15 02:45:06
  • OfStack

This script was found in the LNMP forum

The script is as follows:


#!/bin/bash
#function:cut nginx log files for lnmp v0.5 and v0.6
#author: http://lnmp.org

# Set the directory where your logs are stored 
log_files_path="/home/wwwlogs/"
# Log in years / Month directory format 
log_files_dir=${log_files_path}$(date -d "yesterday" +"%Y")/$(date -d "yesterday" +"%m")
# Sets the name of the log file that needs to be partitioned, multiple separated by Spaces 
log_files_name=(access www.abc3210.com)
# Set up the nginx Installation path 
nginx_sbin="/usr/local/nginx/sbin/nginx"
#Set how long you want to save
save_days=30

############################################
#Please do not modify the following script #
############################################
mkdir -p $log_files_dir

log_files_num=${#log_files_name[@]}

#cut nginx log files
for((i=0;i<$log_files_num;i++));do
mv ${log_files_path}${log_files_name[i]}.log ${log_files_dir}/${log_files_name[i]}_$(date -d "yesterday" +"%Y%m%d").log
done

#delete 30 days ago nginx log files
find $log_files_path -mtime +$save_days -exec rm -rf {} \; 

$nginx_sbin -s reload

Save the above file as.sh, then give the executable permission, and then cooperate with the planned task of Linux, perfect pull ~~~ ~


Related articles: