Sheldon Hearn <[email protected]> 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 - [email protected]


To Unsubscribe: send mail to [email protected]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to