#!/bin/bash
成都創(chuàng)新互聯(lián)網(wǎng)站建設(shè)服務(wù)商,為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站建設(shè)服務(wù),網(wǎng)站設(shè)計(jì),成都網(wǎng)站托管等一站式綜合服務(wù)型公司,專業(yè)打造企業(yè)形象網(wǎng)站,讓您在眾多競(jìng)爭(zhēng)對(duì)手中脫穎而出成都創(chuàng)新互聯(lián)。
source_path='./soruce.access.log'
function rand(){
min=$1
max=$(($2-$min+1))
num=$(date +%s%N)
echo $(($num%$max+$min))
}
while true
do
while read line
do
source_rnd=$(rand 0 1)
source_http_code=(200 404)
rnd=$(rand 0 2)
http_code=(200 403 404)
ip_rand=$(rand 0 2)
ip_list=(192. 168. 11.)
n_ip=$(rand 100 254)
month_date="$(date '+%b')"
last_time=`date -d '-1 minutes' +"%Y:%H:%M"`
new_log=`echo $line| sed "s/20181235/${last_time}/g;s/${ip_list[$ip_rand]}/${n_ip}./g;s/${source_http_code[$source_rnd]}/${http_code[$rnd]}/g"`
echo ${new_log} >> auto_access.log
sleep_rand=$(rand 0 1 2 3)
sleep ${sleep_rand}
done < ${source_path}
done