Skip to content

Instantly share code, notes, and snippets.

@HaVonTe1
Last active December 14, 2015 12:44
Show Gist options
  • Save HaVonTe1/217043d5cdd60f43719c to your computer and use it in GitHub Desktop.
Save HaVonTe1/217043d5cdd60f43719c to your computer and use it in GitHub Desktop.
file stats
find -maxdepth 2 -type d -exec du -sh {} \;
for i in $(find . -maxdepth 1 -type d) ; do
echo -n $i": " ;
( find $i -type f | wc -l ) ;
done
For directories only do this.
find . -type d -exec chmod 775 {} \;
For files only do this.
find . -type f -exec chmod 664 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment