Created
November 27, 2017 15:42
-
-
Save letsjustfixit/ace3350fa2bbd507344c47264a0101cc to your computer and use it in GitHub Desktop.
Opre, sum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sum=0 | |
for i in "$@" | |
do | |
echo $i | |
sum=`expr $sum + $i` | |
#sum=$(( $sum + $i )) | |
done | |
echo "SUM:$sum" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment