freebsd-ports/sysutils/userlist/files/userlist
Volker Stolz b4a1e658d2 - MASTER_SITE no longer exists
- Script small enough to inline it into port
2004-07-13 16:48:27 +00:00

6 lines
221 B
Bash

#!/bin/sh
# Lists all users on the system with a UID greater than 100
# Awk example courtesy of Sendmail Inc.
# Ported to FreeBSD by Jamie Heckford <jamie@jamiesdomain.org.uk>
awk -F: '$3 > 100 { print $1 }' /etc/passwd