> > The script will be scheduled to run every Saturday at noon. When that > happens, what happens with the error message? I realize that this is > probably rather obvious to those who have worked at *nix for a while, > but I am as much a *nix beginner as a Perl beginner. > > Doug
You know, one way to find the answer to things like this is to try them ... Write a script that is known to fail ... -------------------------------------------------- #!/usr/bin/perl use strict; use warnings; die "This program does nothing useful"; -------------------------------------------------- ... put it into your crontab and see what happens. Reading the man page for your system's cron will also be enlightening. -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Lawrence Statton - [EMAIL PROTECTED] s/aba/c/g Computer software consists of only two components: ones and zeros, in roughly equal proportions. All that is required is to sort them into the correct order. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>