At 19:36 22/05/00, Nick Murtagh wrote:
>On Sun, 21 May 2000, David O'Callaghan wrote:
> > $num_users = `w -h | wc -l`;
> > print "There are $num_users logged on to the system.";
> >
> > Although if there are users logged on multiple times it won't catch
> > that and you could get the line count in a perl-ier way...
>>$num_users = `w -h | cut -f 1 -d ' ' | uniq | wc -l`;
At that stage I'd imagine the amount of time spawning programs etc
completely dwarfs doing it all in perl
%users = map {($user) = split(" ", $_); ($user, undef)} `w -h`;
$num_users = keys %users;
Fergal
Maintained by the ILUG website team. The aim of Linux.ie is to
support and help commercial and private users of Linux in Ireland. You can
display ILUG news in your own webpages, read backend
information to find out how. Networking services kindly provided by HEAnet, server kindly donated by
Dell. Linux is a trademark of Linus Torvalds,
used with permission. No penguins were harmed in the production or maintenance
of this highly praised website. Looking for the
Indian Linux Users' Group? Try here. If you've read all this and aren't a lawyer: you should be!