To add two numbers in Shell script
To add two numbers.
This article describes how to add two numbers
# To Add two numbers
a=10 b=5 c=`expr $a + $b` echo “Sum of two numbers=$c”
|
This article describes how to add two numbers
# To Add two numbers
a=10 b=5 c=`expr $a + $b` echo “Sum of two numbers=$c”
|