egrep -v ^# /path/to/config/file.conf | grep -v ^$
A command like this should show you the expiration status for all accounts defined in your /etc/passwd/
file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"
egrep -v ^# /path/to/config/file.conf | grep -v ^$
A command like this should show you the expiration status for all accounts defined in your /etc/passwd/
file
cut -f 1 -d: /etc/passwd | xargs -n 1 -I {} bash -c " echo {} ; chage -l {}"