Help for this page

Select Code to Download


  1. or download this
    my $outfile = q{mybatchfile.bat};
    open( OUTPUT, q{>}, $outfile)
    ...
           qq{set WAIT_TIME=240000\n set URL="http://myurl.biz"\n},
           qq{set PWD="megapassword"\nset EMAIL_TO_STRING="bob@test.com"};
    }
    
  2. or download this
    my $outfile = q{mybatchfile.bat};
    open( OUTPUT, q{>}, $outfile)
    ...
    set PWD="megapassword"
    set EMAIL_TO_STRING="bob@test.com"
    EOT