#!/bin/sh -e

echo "Non-root UID 0 users"
mawk -F: '$3 == 0 && $1 != "root" {print $1}' /etc/passwd
