Write a shell script for performing the functions of a basic calculator.
This will execute basic calculator operation. echo -n “Enter the First Value ” read no1 echo -n “Enter the Second Value ” read no2 echo ” *** Choice *** ” echo “1. Addition” echo “2. Subtraction” echo “3. Multiplication” echo “4. Division” echo “5. Modulo”… Read More »Write a shell script for performing the functions of a basic calculator.