Skip to content

Instantly share code, notes, and snippets.

@georgecao
Created November 14, 2012 07:19
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 georgecao/4070786 to your computer and use it in GitHub Desktop.
Save georgecao/4070786 to your computer and use it in GitHub Desktop.
Calculate AVG. using AWK
awk 'BEGIN{t=0}{t += $1}END{print "Sum: " t, "Lines:" NR,"Avg:" t/(NR)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment