Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    # either of these hang
    my $junk = eof($OUT);
    #while (<$OUT>){};
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    
    warn "x" x shift(@ARGV) . "\n";
    
  3. or download this
    [msouth@jinx GUI-APP bin]$ ./runner.pl ./user.pl 4095
    
  4. or download this
    [msouth@jinx GUI-APP bin]$ ./runner.pl ./user.pl 4096