We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
The World of Numbers
The World of Numbers
Values can be read from the command line using the read
command. See the following code.
read a
read b
echo $a
echo $b
Invoked from the command line:
echo '1\n2'|./read.sh
1
2
To perform an operation, surround the variables with (())
or []
and precede with a $
sign.
read a
read b
echo $[a+b]
echo $((a-b))
Reference Resources
A relevant and interesting discussion on Stack-Exchange for those getting started with handling numbers and arithmetic operations in Bash.