On Solaris 2.7, I only get command arguements -- not the whole command -- if I do this:

  use strict;

  use DateTime::Event::Cron;

  my @entries = DateTime::Event::Cron->new_from_crontab
                (file => '/tmp/crontab.out');

  my $entry;

  foreach $entry (@entries)
  {
      print $entry->original(), "\n";
      print "  ", $entry->command(), "\n";
  }

I get the whole crontab line, followed by the command
arguments only; i.e., the program name is missing.

All program names are full paths.

Any ideas why this isn't working as I'd expect?  Or am
I missing something?

--
Steve Sapovits  [EMAIL PROTECTED]



Reply via email to