I have a linux server on which several at jobs are scheduled.
When I do atq, I see the usernames that have scheduled jobs and the time at which those jobs have been scheduled to run. However, I don’t see what the job actually is (what script/params are being run?)
Is there a way for me to look up what is actually scheduled to run at the scheduled time, without having to wait until that time and running a ps aux | grep username? Ideally, I’d like to look this up without logging
Runing
atqwill give you something like this.here
1072250520.ais the job id. runat -cwith this job idIn my
Ubuntu 12.10,at -c 1(job id1) gives me all the environment variables first then at the last my command.