Hi, I've a script as:
...
cat $1 | while read LINE
do
A=`echo "$LINE" | awk -F'\t' '{ print $88 }'`
B=`echo "$A + $B" | tr , . | bc | tr . ,`
done
...
When I execute this, my output is: (standard_in) 1: parse error
I don't know that it is wrong. Can somebody help me?
Thanks
...
cat $1 | while read LINE
do
A=`echo "$LINE" | awk -F'\t' '{ print $88 }'`
B=`echo "$A + $B" | tr , . | bc | tr . ,`
done
...
When I execute this, my output is: (standard_in) 1: parse error
I don't know that it is wrong. Can somebody help me?
Thanks