Skip to content

Instantly share code, notes, and snippets.

@monnoval
Created December 19, 2022 09:27
Show Gist options
  • Save monnoval/bf4765d0ae89092a06175d0481c8533f to your computer and use it in GitHub Desktop.
Save monnoval/bf4765d0ae89092a06175d0481c8533f to your computer and use it in GitHub Desktop.
How many files are there in each folder
# How many files are there in each folder
# https://stackoverflow.com/a/26458853
for i in */ .*/ ; do
echo -n $i": " ;
(find "$i" -type f | wc -l) ;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment