I run the following in the command line:
prog1 | prog2
The output (say, X) of above is a 4-digit hex number, e.g. FA34.
prog1 is a java program which reads data every 100ms on the serial. prog2 is the cut command which cuts out a portion I need. This works fine and I can see the desired value every 100ms on the standard out.
What I want:
prog1 | prog2 | <convert X to decimal> | <multiply by 2>
How to do this, using pipes or not, in the command line in one-go?
Note: I wrote a bash script to convert X to decimal and multiply by 2. But I couldn't direct X into my script as an argument.
xargs:prog1 | prog2 | xargs echo "ibase=16;obase=A;2*" | bc(or something like that) 2. you can read that number from the stdin in your bash script. – khachik Dec 6 '12 at 14:01