Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^6: What is an ordinary statement?

by RonW (Parson)
on Jun 13, 2019 at 01:10 UTC ( [id://11101302]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Expect::Quick Prompt => [ -re => '^\$\s+' ], REMOTE => 'user@examp
    +le.com';
    
    send 'command param1 param2';
    my $resp = before;
    ...;
    
  2. or download this
    BEGIN {
        require Expect::Quick Prompt;
        import Prompt => [ -re => '^\$\s+' ], REMOTE => 'user@example.com'
    +;
    }
    
  3. or download this
    use Expect::Quick;
    
    ...
    send 'command param1 param2';
    my $resp = before;
    ...;
    

Log In?
Username:
Password:

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

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

    No recent polls found