Help for this page

Select Code to Download


  1. or download this
    system("start $separate_command") and die $!,$?,$^E;
    
  2. or download this
                use Net::Telnet();
                $commandExecution = new Net::Telnet(Host=>$location,      
    +                                   Dump_Log=>"debug.txt",            
    +                        Prompt=>'/C:\\\\>.*$/');
    ...
    $commandExecution->print($separate_command);
    $commandExecution->waitfor('/.+$/');
    $commandExecution->close;