From 397e93cf9292b18b80a2a938f045ec686dc6df1e Mon Sep 17 00:00:00 2001 From: Sean Finney Date: Fri, 15 Feb 2008 20:12:01 +0000 Subject: [PATCH] remove eol prop from this one too --- contrib/check_axis.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/contrib/check_axis.sh b/contrib/check_axis.sh index 231d9da..9514c4e 100644 --- a/contrib/check_axis.sh +++ b/contrib/check_axis.sh @@ -29,11 +29,9 @@ lines=`cat $tempfile | grep -i $port` status=`echo $lines | awk '{ print $3 }'` if [ "$status" == "Printing" ]; then bytes=`echo $lines | awk '{ print $4 }'`; - comments=`echo $lines | tr -d " -" | awk '{ print $5 " " $6 }'`; + comments=`echo $lines | tr -d " " | awk '{ print $5 " " $6 }'`; else - comments=`echo $lines | tr -d " -" | awk '{ print $4 " " $5 }'`; + comments=`echo $lines | tr -d " " | awk '{ print $4 " " $5 }'`; fi comma=`echo $comments | grep , | wc -l`