Skip to content

Instantly share code, notes, and snippets.

@matlink
Created February 17, 2018 19:04
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/cc4dc58b5f5040b1a21311ac42e783d3 to your computer and use it in GitHub Desktop.
Save matlink/cc4dc58b5f5040b1a21311ac42e783d3 to your computer and use it in GitHub Desktop.
print max of 2nd column
awk '{ if(max<$2) {max=$2} } END { print max }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment