Hi,
I am running a perl script in crontab as follows:
* * * * * /home/httpd/vhosts/mysite.com/cgi-bin/deleteFiles.pl?docume
+ntroot=/home/user/directory
However , this file doesn't run at every minute .
So I tried
* * * * * /home/httpd/vhosts/mysite.com/cgi-bin/deleteFiles.pl /home/
+user/directory
i.e passing the path as a argument .
But the perl file didn't ran in both cases .
My perl file code for first few lines where I tried above is as follows :
#!/usr/bin/perl
use CGI;
use DBI;
my $query=new CGI;
print $ARGV[0];
my $documentroot=$query->param("documentroot");
print $documentroot;
exit 1;
For the time being I am trying to print the path so that I know that the script gets the path properly .
Can anyone let me know wht wrong I am doing in my script or cron settings .
Thankyou for paying attention to my question.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.