Skip to content

Commit

Permalink
added add.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas99341 authored Jul 21, 2022
0 parents commit dad38bc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Shell-Script/add.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

# Add two numbers
a=$1
b=$2
((sum=a+b))

echo $sum

./third.sh 45 90 -- while execution pass the values dynamically

0 comments on commit dad38bc

Please sign in to comment.