how can i list the users( and only those users) who logged in more than once? thanks in advance...
who -q | sed '$d' | tr ' ' '\n' | sort | uniq -c | awk '$1 > 1 {print $2}'
Cheers,
ZB
how can i list the users( and only those users) who logged in more than once? thanks in advance...
who -q | sed '$d' | tr ' ' '\n' | sort | uniq -c | awk '$1 > 1 {print $2}'
Cheers,
ZB