Help for this page

Select Code to Download


  1. or download this
    #!perl -w
    # usage: showerr.pl port
    ...
      print while <$readport>;
      print "Connection closed at ", scalar(localtime), "\n";
    }
    
  2. or download this
    #!perl -w
    use IO::Socket;
    ...
    print STDERR "testing\n";
    
    sleep(10);