How to schedule a job in unix without crontab command?

13,297

Another command that is used for scheduling commands is at. Here's a link to the man page.

For example, if you want to run a command at a given time, you can do

at 4pm /path/to/my/command
Share:
13,297
arunpandiyarajhen
Author by

arunpandiyarajhen

I'm a Trainee working in a Consultancy. I'm currently getting trained in Cognos 10.1 and Business Objects XI. HTML, CSS, Javascript, SQL, Proc*C, VBScript and Oracle are my area of interests.

Updated on July 18, 2022

Comments

  • arunpandiyarajhen
    arunpandiyarajhen almost 2 years

    I would like to schedule a URL load balancer check job without crontab command as the crontab usage is blocked for me. I tried to run the every 1 hour but it is consuming more resources. Is there any other efficient way to schedule a job without using a crontab command?

  • twalberg
    twalberg over 10 years
    And then to simulate cron, have the last line of your /path/to/my/command resubmit itself via at for the next run...
  • Alexej Magura
    Alexej Magura over 7 years
    @bstamour What if we can't use at either?