In Shell scripting (Linux/Ubuntu , Bash) , why do we use echo and bc commands together ? I am new to Shell scripting and have a basic understanding of pipes .
I know that bc is kind of a seperate language . How does the following statement actually work (Just an example) ?
echo 5+6 | bc
|
You can use that program combination for another set of powerful operations, for example you can convert from hexadecimal to binary like this
It will print: As for the process of echoing and using the
Another example of this useful combination is the calculation of really big quantities, like:
A note about the |
|||||||||
|
|
The first command ( This is used since |
|||
|
|
echo is not required here and can be replaced by an here document:
or with modern shells:
|
|||
|
|
|
Before bc command we can see very simple PIPE:
The name pipe is very accurate! Like a normal pipe this one is transferring water from source to target. In computer science water is called data or information. Like every good pipe, both endings of it are special. Through those endings we can connect pipe to other pipes, taps, joints, etc. One ending of this pipe is connected to bc which has matching ending. Bc is a big piece of software, so it has many different connection points for different pipes. Also for this simple | pipe. On the other hand 5+6 is not any piece of software. It is pure data/water. You can imagine what will happen if you pure water to one end of the pipe without fixed connection! Lack of water pressure... We need some software which has good connection to that pipe. Echo is very simple application, doing practically nothing, like decent echo should do... But it has basic and functional ending matching that simple pipe. |
|||
|
|
|
If you want not to use a kind of a seperate language, you coud use bash for simple integer operations:
You could even use pure bash to compute pseudo real values:
This may appear as stong and useless, but having to fork to another process each time you have do compute some math may become overkill:
(It's very quick)
Wow! 13ms for this kind of operation!? At all, a fork is a not so light operation. |
|||
|
|

*operator as\*. Elseecho *will expand it as wildcard. – anishsane Nov 7 '12 at 15:03echo 4 * 5 | bc) you need to escape the*. – anishsane Nov 8 '12 at 5:19'4*5'. – anishsane Nov 8 '12 at 11:08