Last active
December 31, 2015 13:49
-
-
Save sgrankin/7995231 to your computer and use it in GitHub Desktop.
95% of a sorted file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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