Skip to content

Instantly share code, notes, and snippets.

@cbguder
Last active August 29, 2015 14:21
Show Gist options
  • Save cbguder/0c3fc835ed5a7fec9ffc to your computer and use it in GitHub Desktop.
Save cbguder/0c3fc835ed5a7fec9ffc to your computer and use it in GitHub Desktop.
Sort lines by length
sed 's/ *$//' | sort | awk '{print length, $0}' | sort -nrs | cut -d' ' -f2-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment