Write a shell script to divide two nos
Program :-
echo
"utsav gohel - 91900104011"
# Write
a shell script to divide two nos
#!/bin/bash
echo
"Enter A = "
read a
echo
"Enter B = "
read b
divide=$((
$a / $b ))
echo
"divide of two number is .."
echo
$divide
Output :-