Skip to content

Instantly share code, notes, and snippets.

@matlink
Created February 14, 2019 13:24
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 matlink/7aea88b27ad50504f4aa4bcc6c5a36e1 to your computer and use it in GitHub Desktop.
Save matlink/7aea88b27ad50504f4aa4bcc6c5a36e1 to your computer and use it in GitHub Desktop.
print SUM until threshold
awk '{ if ($1<=1e7){SUM+=$3} else{print SUM; exit}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment