Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HereThereBeMonsters/7cb71b41b61f17fa8c6583498091086d to your computer and use it in GitHub Desktop.
Save HereThereBeMonsters/7cb71b41b61f17fa8c6583498091086d to your computer and use it in GitHub Desktop.
Find all java files in the current directory and list them ordered by name length
find . -name \*.java -printf "%f\n" | awk '{ print length($0) " " $0; }' | sort -r -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment