How to schedule my script without crontab

I have a script which shoud run after every 30 minutes.Though I know abt crontab, unfortunately I dont have access/authorization to use crontab in my terminal.

Could any one pls let me know how to schedule the script without crontab ?

Regards
Prashant:)

use at command
for more info refer man page of at

Very Interesting Command, i never came by this before. But can you correct me on this if i'm wrong.

The "at command" does not have an every day feature, so away around this is by having it invoke itself in a script.

# my.daily runs every day
at now tomorrow < my.daily
daily-processing

So here, my.daily is a script that is written like this

at now tomorrow

Then when the user runs there script and in the parameters they have the keyword "tomorrow"
So this insures tomorrow is always recurring.

so an example of this would be:

$ at 1145am now tomorrow < my.daily
at> cc -o foo foo.c
at> ^D

Did i get this right?

Thanks.

But then again, you could find yourself not in at.allow or in at.deny (I dont know for linux...)

And Phi01, yes you got it right - you can use at in a way the submitted job reschedules itself...