Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
This could be a bother to write in any other language, but Perl makes it so easy that it would be silly not to build it. It is a simple tool.
It does only this: Grab the web page containing the load stats on the login machines at my university. Select the server with lowest load and launch ssh.
I for one feel taht this is the biggest use for Perl. Those small nice hacks that just make life a bit... smoother. Imagine how long this little widget would be written in any other language.

#!/usr/bin/perl -w if ( $#ARGV != 0 ) { print "efd v1.0 by d99msr\n"; print "Usage:\n"; print " efd username\n"; exit; } my $user = $ARGV[0]; use HTTP::Request::Common; use LWP::UserAgent; print "Retrieving and parsing load average stats.\n"; my $ua = LWP::UserAgent->new; my $req = GET 'http://www.efd.lth.se/loginload.shtml'; my @raw = split("\n", $ua->request($req)->as_string); my $lowest = 10; my $machine; foreach (@raw) { if ( $_ =~ m/TR.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TD.*TR/) + { $_ =~ s/\<.*?\>\<.*?\>/\<\>/ig; $_ =~ s/ //g; @split = split("<>", $_); if ( $split[5] < $lowest ) { $lowest = $split[5]; $machine = $split[1]; } } } print "Connecting to $machine, load average: $lowest\n"; my $efdname = "$user\@$machine.efd.lth.se"; exec("ssh $efdname"); exit;


Odie

--
I am a manual signature virus. Copy me please!

In reply to Nothing special. Isn't that what Perls all about? by odie

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-18 20:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found