Thanks, but that isn't what I was asking at all.
I wanted to capture the message that AT gives when you
run a command under AT.
I know how to do "at- l" to get a list. Unfortunately,
as part of "at -l" you don't get the actual name of
the shell that AT will be running, unless you have privileges to get to the cron/atjobs file.
What I need to do, without privileges, is to associate
the actual shell being submitted with the AT job name
you see with "at -l". I just got it working, and what
I am doing is sending standard error to a file, then AT
writes the message with the job name to this file. I then
cut the AT job name from that file and create another temporary file, where I write the AT job name and the
actual shell name I had stored in a variable.
Problem solved, I can then read this file, present a
listing to the user with the name of the shell they
will recognize, and after they select the job to delete,
it will use the nonsense name given by AT to delete the job
from AT.
Thanks for the help anyway.
John