Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    if (condition) {
       system '/usr/.../another.pl';
    }
    print "Location: http://test/ \n\n";
    
  2. or download this
    #!/usr/bin/perl -w
    if (condition)
    ...
      # notice the use of the back quote.
    }
    print "Location: http://test/ \n\n";