From 8a45a5152f953c5573bd18a3bd8b0785f3dea513 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Tue, 1 Aug 2017 10:19:21 +0100 Subject: Removed lots of cruft, and merged the example.conf with etc/mauveserver.conf --- utils/packet_processing.sh | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100755 utils/packet_processing.sh (limited to 'utils/packet_processing.sh') diff --git a/utils/packet_processing.sh b/utils/packet_processing.sh deleted file mode 100755 index d78a916..0000000 --- a/utils/packet_processing.sh +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -NO_ARGS=0 -OPTERROR=65 -if [ $# -eq "$NO_ARGS" ] # Script invoked with no command-line args? -then - echo "Usage: `basename $0` File.log" - exit $OPTERROR # Exit and explain usage, if no argument(s) given. -fi -logFile=$1 - -egrep 'Packet processed in [\.0-9]* seconds' $logFile |\ - awk 'BEGIN {print " date sz"} {print s++ " " $1 "::" $2 " " $11}' > data - -R --vanilla --no-save --slave <