Question: Write down the outputs when you execute the following script #!/bin/bash a=5; b=$(($a*2)) echo b $b let c=$b*3-$a+1 echo c = $c d=expr $c
Write down the outputs when you execute the following script #!/bin/bash a=5; b=$(($a*2)) echo "b $b" let c="$b*3-$a+1" echo "c = $c" d="expr $c / $a` echo "d = $d"
Step by Step Solution
3.49 Rating (166 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
