From: Razvan Deaconescu Date: Sat, 14 Aug 2010 12:52:08 +0000 (+0300) Subject: ControlScripts/clients/hrk: remove grepping for "SLEEP" when parsing for peer-connect... X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=80fce34577a87c731bfd0fcab7e00bf75940b480;p=p2p-testing-infrastructure.git ControlScripts/clients/hrk: remove grepping for "SLEEP" when parsing for peer-connection upload/download speed files --- diff --git a/ControlScripts/clients/hrk/parse_hrk.sh b/ControlScripts/clients/hrk/parse_hrk.sh index cc24388..6d19a9f 100755 --- a/ControlScripts/clients/hrk/parse_hrk.sh +++ b/ControlScripts/clients/hrk/parse_hrk.sh @@ -90,7 +90,7 @@ local_ip=$(hostname_to_ip ${LOG_FILE/%.log/}) # Parse the peer log file; output peer download and upload files -grep '^--Peers\|SLEEP' $LOG_FOLDER/$LOG_FILE | awk -v ip=${local_ip} -F '[],() []+' ' +grep '^--Peers' $LOG_FOLDER/$LOG_FILE | awk -v ip=${local_ip} -F '[],() []+' ' { printf "[%s %s %s]", $2, $3, $4; i = 6;