arunpandiyarajhen
arunpandiyarajhen

Reputation: 653

How to schedule a job in unix without crontab command?

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?

Upvotes: 2

Views: 13875

Answers (1)

bstamour
bstamour

Reputation: 7766

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

Upvotes: 5

Related Questions