remove eol prop from this one too

This commit is contained in:
Sean Finney 2008-02-15 20:12:01 +00:00
parent 289aa1350d
commit 397e93cf92

View file

@ -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`