Skip to content

Instantly share code, notes, and snippets.

@isayev
Created October 7, 2015 02:03
Show Gist options
  • Select an option

  • Save isayev/942d950c0a4081f1275d to your computer and use it in GitHub Desktop.

Select an option

Save isayev/942d950c0a4081f1275d to your computer and use it in GitHub Desktop.
sort lines in file by their length
cat input.txt | awk '{ print length, $0 }' | sort -n -s | cut -d" " -f2- > input-sorted.txt
# reverse order
cat input.txt | awk '{ print length, $0 }' | sort -n -r | cut -d" " -f2- > input-sorted-rev.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment