Using Bc in Shell Scripts
bc can be used non-interactively, with input via a pipe. This is useful inside shell scripts. For example:
$ result=$(echo "scale=2; 5 * 7 / 3;" | bc) $ echo $result 11.66In contrast, note that the bash shell only performs integer arithmetic, e.g.:
$ result=$((5 * 7 /3)) $ echo $result 11Read more about this topic: Bc Programming Language
Famous quotes containing the word shell:
“If there was one egg in it there were nine,
Torpedo-like, with shell of gritty leather,
All packed in sand to wait the trump together.”
—Robert Frost (18741963)
Related Phrases
Related Words