Skip to content

Instantly share code, notes, and snippets.

@sgrankin
Last active December 31, 2015 13:49
Show Gist options
  • Save sgrankin/7995231 to your computer and use it in GitHub Desktop.
Save sgrankin/7995231 to your computer and use it in GitHub Desktop.
95% of a sorted file
function 95p { tail -n +$((` wc -l $1 | cut -d ' ' -f 2 `*95/100)) $1 | head -n 1 ; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment