Skip to content

Instantly share code, notes, and snippets.

@jkot
Last active August 29, 2015 14:10
Show Gist options
  • Save jkot/558a9e563191b5886f3e to your computer and use it in GitHub Desktop.
Save jkot/558a9e563191b5886f3e to your computer and use it in GitHub Desktop.
Data processing tricks

Sort by line length

| awk '{ print length, $0 }' | sort -n | cut -d" " -f2-

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment