Help for this page

Select Code to Download


  1. or download this
            else {
                $call = <Something I make here>;  # sorry, can't show that
    ...
                close (OUT);
                exit;
            }
    
  2. or download this
            else {
                $call = <Something I make here>;  # sorry, can't show that
                exec $call || die "Something went wrong!";
            }
    
  3. or download this
    $call= "myperlscript -param1 $var1 -param2 $var2";
    exec $call;
    
  4. or download this
    @call= ('/my/home/dir/myperlscript','-param1',$var1,'-param2',$var2);
    exec @call;