bash calculate division

bash calculate division

bc -l <<< '10/3' # Fast way
3.33333333333333333333
bc <<< 'scale=2; 10/3' #Define also how many decimals to take in scale
3.33

Source: codegrepper

bash division integer

#To get integer division just use following:
echo $((x / y))

Source: codegrepper