-
-
Save lewisd32/0377c0af477a8bd508c4 to your computer and use it in GitHub Desktop.
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 | |
total=0 | |
while read num; do | |
total=$((total+num)) | |
done | |
echo $total |
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 | |
math=`sed "s/$/+/"`0 | |
echo $math | bc -q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment