#!/bin/sh -e

# Lists all users

if [ "$cpch_VERBOSITY" -gt -1 ]; then
	echo "All users:"
	mawk -F: '$3 > 99 && $3 < 65534 {print $1}' /etc/passwd
fi
