This commit is contained in:
parent
dc4e915456
commit
b3128c6aba
1 changed files with 25 additions and 0 deletions
25
spielspass/logkosmetik.sh
Executable file
25
spielspass/logkosmetik.sh
Executable file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -u
|
||||||
|
|
||||||
|
VERSIONS="17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0"
|
||||||
|
SRC="logs/access.log"
|
||||||
|
DEST="access.log.all"
|
||||||
|
|
||||||
|
#[ -e ${SRC}.1.gz ] && gzip $SRC ${SRC}.1.gz
|
||||||
|
|
||||||
|
rm $DEST
|
||||||
|
for vers in ${VERSIONS[@]}
|
||||||
|
do
|
||||||
|
file=${SRC}.${vers}.gz
|
||||||
|
echo $file
|
||||||
|
zcat $file >> $DEST
|
||||||
|
echo -e "\n" >> $DEST
|
||||||
|
done
|
||||||
|
|
||||||
|
sed '/Python-urllib/d' $DEST > ${DEST}.a
|
||||||
|
sed '/\"Wget\/1\.9\.1\"/d' $DEST.a > ${DEST}.b
|
||||||
|
sed '/U\;\ Nessus/d' $DEST.b > ${DEST}.c
|
||||||
|
sed '/action=rss/d' $DEST.c > ${DEST}.d
|
||||||
|
sed 's/^/127.0.0.1 /' $DEST.d > ${DEST}.e
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue