Skip to content

Instantly share code, notes, and snippets.

@ftorto
Created February 6, 2017 07:02
Show Gist options
  • Save ftorto/b0c3188bdda646f53bff604eb14f6191 to your computer and use it in GitHub Desktop.
Save ftorto/b0c3188bdda646f53bff604eb14f6191 to your computer and use it in GitHub Desktop.
Sum all lines (1 value per line)
awk '{s+=$1} END {printf "%.0f", s}' mydatafile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment