Write a short interactive shell script that Asks the user fo
Write a short, interactive shell script that
Asks the user for a numeric variable A
Asks the user for a numeric variable B
Echoes the text “A minus B equals:”
Solution
echo \"Numeric variable A :\"
read A
echo \"Numeric variable B :\"
read B
echo \"A minus B equals: $(( A - B ))\"
