Skip to content

Instantly share code, notes, and snippets.

@lewisd32
Created February 16, 2015 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lewisd32/0377c0af477a8bd508c4 to your computer and use it in GitHub Desktop.
Save lewisd32/0377c0af477a8bd508c4 to your computer and use it in GitHub Desktop.
#!/bin/bash
total=0
while read num; do
total=$((total+num))
done
echo $total
#!/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