in reply to Re: Manipulating crontab
in thread Manipulating crontab

If you wanted to get the crontab for Auser, you could do
my $user = "Auser"; my @crontab=`crontab -l $user`
Edit @crontab, and output it to a file, then execute the system call.