Help for this page

Select Code to Download


  1. or download this
    
    #!/usr/local/bin/perl
    ...
    $connection->print('q');
    $connection->close;
    exit 0;
    
  2. or download this
    #!/usr/bin/expect
    set env(TERM) no-resize-vt100
    ...
    expect -re ".*Accept.*: $" { send y\r }
    expect -re ".*Select.*: $" { send q\r }
    exit 0