I have a perl .exe file that I was to run every ten minutes. I have set up the windows scheduler to run it and it says that it is successful but there is no output in the file. When I click the .exe myself it writes information to an output file. When the scheduler supposedly has ran it there is nothing in the file. Is there a code I can write in to the perl script to make it run every ten minutes on its own? Or does anyone know a reason why it might not be executing properly. Here is my script code:

#!/usr/bin/perl -w
use LWP::Simple;
$now_string = localtime;

my $html = get("http://www.spc.noaa.gov/climo/reports/last3hours.html")
    or die "Could not fetch NWS page.";
$html =~ m{(Hail Reports.*)Wind Reports}s || die;
my $hail = $1;
open OUTPUT, ">>output.txt";
print OUTPUT ("\n\t$now_string\n$hail\n");
close OUTPUT;
print "$hail\n";
link|improve this question

can we see the command you are using in the window scheduler? – spinon Jul 2 '10 at 21:07
I didnt use a command I just selected the file under the file selection option – shinjuo Jul 2 '10 at 21:25
use strict; use warnings; – Ether Jul 2 '10 at 21:57
2  
you don't need to type in use warnings; because you're using the -w flag in the first line, which is global. – vol7ron Jul 3 '10 at 14:30
feedback

2 Answers

up vote 1 down vote accepted

Assuming you didn't remove the path from your code and that you're not specifying a start-in directory, provide a full path for the output file, e.g.,

open OUTPUT, ">>J:/Project/Reports/output.txt"
  or die "$0: open: $!";
link|improve this answer
why would it work though when I click the .exe file myself and not when the scheduler uses it – shinjuo Jul 2 '10 at 21:26
@shinjuo The scheduler starts tasks with the system root as the current directory. I assume your code lives somewhere else. – Greg Bacon Jul 2 '10 at 21:36
the output file is located in the same folder along with the .exe and all of its files – shinjuo Jul 2 '10 at 22:06
Okay so I wrote in the use warnings and use scripts; I also gave the directory like you said. Then I redid the task and now it works. If it was this than thanks. – shinjuo Jul 2 '10 at 22:22
feedback

There are 2 things you should do:

  1. Specify the path in the program
  2. Make sure the permissions to the file are writable by the scheduler

Code:

#!/usr/bin/perl -w

use LWP::Simple;
use strict;                                           # make sure you write good code

   my $now_string = localtime;

   my $html = get("http://www.spc.noaa.gov/climo/reports/last3hours.html")
              or die "Could not fetch NWS page.";
   my ($hail) = $html =~ m{(Hail Reports.*)Wind Reports}s or die;  # combine your lines in one

   my $file = "C:\Path\output.txt";                   # use full qualified path
   open OUTPUT, ">>$file";
      print OUTPUT ("\n\t$now_string\n$hail\n");
   close OUTPUT;

   print "$hail\n";
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.