Bash Script
Dirty script to find out free storage space.
for path in `mount | awk '/^\/dev/ {print $3}'`; do df -h "$path"; done;