Sheldon Hearn <sheld...@iafrica.com> writes:
> -awk -F: '$2=="" {print $0}' /etc/master.passwd
> +grep -v '^\+' /etc/master.passwd | awk -F: '$2=="" {print $0}'

auuuuuuuuuuuugh!

awk -F: '$1 !~ /^\+/ && $2=="" {print $0}' /etc/master.passwd

DES
-- 
Dag-Erling Smorgrav - d...@flood.ping.uio.no


To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-current" in the body of the message

Reply via email to