Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Putty Session Generator

by thor (Priest)
on Oct 25, 2004 at 18:36 UTC ( [id://402285]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub mysub
    {
       $foo ++;
       some_other_sub($bar);
    }
    
  2. or download this
    sub mysub
    {
       my ($foo, $bar) = @_;
       #do stuff with $foo and $bar
    }
    
  3. or download this
    my ($folder, $server_name, $session_name, $protocol, $hexport, 
       $version, $compr, $user);
    ...
        &create_session($server_name, $session_name, $protocol, $user);
        &create_link($folder, $server_name, $session_name);
    }
    
  4. or download this
    while (<SERVER_LIST>) {
        next if /$ignore/ ;
    ...
        create_session($server_name, $session_name, $protocol, $user);
        create_link($folder, $server_name, $session_name);
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://402285]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (7)
As of 2024-04-16 11:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found