#This script is for looking for unneded files in the system , that are still
# exist , but doesn't have valid UID or GID
echo "Looking for files w/ not valid UID or GUID.."
find / -path /cdimg -prune -o -nouser  -print
find / -path /cdimg -prune -o -nogroup -print
echo "Done."
