Help for this page

Select Code to Download


  1. or download this
    use Socket;
    use IO::Handle;
    ...
    exec "./fill.pl" or die "Can't start my program: $!\n";
    
    shutdown(CHILD,1);
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $a=<STDIN>;
    if ($a =~ /yes/) {print "bla bla bla";exit 0;}
    else {goto ASK;}