#!/bin/sh ROOT_UID=0 # Only users with $UID 0 have root privileges. E_NOTROOT=67 # Non-root exit error. # Run as root, of course. if [ "$UID" -ne "$ROOT_UID" ]; then echo "Must be root to run this script." exit $E_NOTROOT fi mount /mnt/backup /usr/bin/du -sh /etc /home /var /var/log /var/ftp /var/www /home/marc/Public /mnt/backup 2>/dev/null | (cat <