LINUX.IE, website of the Irish Linux Users' Group
Tux rules!

   
Home
New Users
Articles
Download
Projects
Community
Vendors

  Print Version
Email to...
 
Archives:


planetILUG

Recent News

News Archive


Join the
ILUG
on FaceBook


Join the
ILUG
on LinkedIn


Join the
ILUG SETI
Group



















 
 :: Mailing Lists

[ILUG] Re: Need help with Perl script

[ILUG] Re: Need help with Perl script

Phil phil at redbrick.dcu.ie
Tue May 2 14:46:07 IST 2000


Tina Marie's [TinaDp6 at netscape.net] 22 lines of dribble included:
> 
> 
> I need to have the number of users printed out within my perl script.
> 
>   I know the UNIX command is w -h | wc -l
That doesn't work if users are logged in multiple times. 
w | awk '{print $1}' | sort | uniq | wc -l
(sort -u saves a pipe on some systems)

>   But how do I get it to print out like the sample below?
> 
> 
>   There are 7 users logged on the system.
This sounds more of a shell scripty way of doing things than actually needing
to do it in perl. However if what you're looking for is something like

#!/usr/bin/perl
$blah = system("w | awk '{print $1}' | sort | uniq | wc -l");
print "There are $blah users logged on";

Probably a far better way in perl is
$var = `who`;
Then parsing your input here using perl. This is more optimal and a far better
reason to use perl than shell scripting after all. I'm not a big believer in
using system calls in perl at all. 
Phil.




More information about the ILUG mailing list
Read this without the formatting.
                                                                                                    

 

Hosted by HEAnet


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!
RSS Version
Powered by Dell