bash:adding_values
This is an old revision of the document!
BASH - Adding values
#!/bin/bash echo -n "Enter first number:" read x echo -n "Enter second number:" read y (( sum=x+y )) echo "The result of addition=$sum"
bash/adding_values.1576609765.txt.gz ยท Last modified: 2020/07/15 09:30 (external edit)