LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   how to modify at scheduler job. (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-modify-at-scheduler-job-947897/)

rakrr786 06-01-2012 12:29 AM

how to modify at scheduler job.
 
I am Newbie to linux. i am scheduling the job in centos using "at" command. But some time i need to change the time for some scheduled job. can you please give me idea how can i modify the job which scheduled using "at" command.

tshikose 06-01-2012 01:43 AM

Delete the job and then recreate another one with the timing you want.

rakrr786 06-01-2012 05:20 AM

actually i am scheduling this job using script.
do you have any idea to delete the previous job and recreate new job through script using at?

tshikose 06-01-2012 09:40 AM

# to list scheduled jobs
Code:

at -l
# to get details of job 7
Code:

at -c 7
# to delete job 7
Code:

at -d 7
In fact, you can get everything you want and need from
Code:

man at


All times are GMT -5. The time now is 03:29 PM.