#!/bin/sh

getent passwd | awk -F : '$3 >= 500 { print $1; }' | \
while read u; do
	/root/cleanuser.sh "$u"
done

