I have the following cron entry:
30 1 * * * /home/root/cronscripts/lower
The lower file contains the following syntax:
/data/netsite-pages/students/ppages/lower.pl
/data/netsite-pages/students/ppages/ppages.html
And the perl script is:
#!/usr/local/perl -wi
use strict;
while (<>){
s/(.*)/\L$1/;
print;
}
Why is this script not executing???? I can run it manually, but it seems not
run from crom??
Thanks Mike
Received on Fri Aug 18 2000 - 12:20:32 NZST