#!/bin/sh -e

echo "Users with empty passwords"
mawk -F: '$2 == "" {print $1}' /etc/shadow
