I have a list of numbers that I want to perform an operation on in BASH (e.g. sine, sqrt etc). At the moment I loop over the vector of numbers using bc and tack on a space " "
, which seems a bit clunky:
x=`seq 1 2.5 30` # generate a list of numbers
for i in $x ; do
a=${a}`echo "sqrt($i)" | bc`" "
done # a is output vector
I was wondering if there was a neater way to do this without using the loop and " "
tagging?
You're not building an array, but a string with spaces. You could use an actual array instead:
resulting in
Alternatively, you can write it completely in bc to avoid spawning a subshell for each line:
If you stuff that into a script called
getsquares
, you can get your array withor, best of both worlds (single instance of bc, embedded in Bash script):