Help for this page

Select Code to Download


  1. or download this
    C:\test>start /b lsn.pl 25000
    
    ...
    
    C:\test>taskkill /f /pid 12100
    SUCCESS: The process with PID 12100 has been terminated.
    
  2. or download this
    #! perl -slw
    use strict;
    ...
    while( my $client = $lsn->accept ) {
        close $client;
    }