Help for this page

Select Code to Download


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