#!/bin/sh
# Print the highest uid number in the passwd file.

cut -d: -f3 < /etc/passwd \
	| sort +n \
	| tail -1

