calculate on #bash

#!/bin/bash

result=`echo scale=2\; 24 / 16 | bc`
echo $result # = 1.50
 

0 notes