Created
August 16, 2013 13:27
-
-
Save Guitsou/6249973 to your computer and use it in GitHub Desktop.
Compter les Inodes
From http://stackoverflow.com/questions/653096/howto-free-inode-usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# count_em - count files in all subdirectories under current directory. | |
echo 'echo $(ls -a "$1" | wc -l) $1' >/tmp/count_em_$$ | |
chmod 700 /tmp/count_em_$$ | |
find . -mount -type d -print0 | xargs -0 -n1 /tmp/count_em_$$ | sort -n | |
rm -f /tmp/count_em_$$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment