Inodecheck.sh
From Ye Ole Stash
#!/bin/bash df -iP | grep / | while read A B C D E F;do echo -e "$A\nINODES\n$B\nIUsed\n$C\nIFree\n$D\nIUse\n$E"; done # Really like how I go all POSIX with the -P then go all ANTI-POSIX with echo -e. Fun Times!