Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save petitchevalroux/695c6dde420557caddbafa595761b734 to your computer and use it in GitHub Desktop.
Save petitchevalroux/695c6dde420557caddbafa595761b734 to your computer and use it in GitHub Desktop.
Sort directory by files count
find . -xdev -type f | cut -d "/" -f 2 | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment