At command help

Hi,

History before I start problem :
Through at command we are run one script after every 15 min .I want to disable for sometime .
Instead of disabling it I have renamed file it is calling so that it will not get file and it will not run.This work perfect.
But Now i want start it once again ,I have renamed it as earlier.But it is not picking file.

I want to check at jobs running .
when i type at -l
It doesn't return anything.

at -f time.sh -m +15 minutes
at: bad time specification

m working in /bin/ksh

try this

# at -f time.sh now + 15 minutes

Great thanks
what is syntax for to run it for evry 15 minutes interval

---------- Post updated at 06:34 AM ---------- Previous update was at 06:33 AM ----------

Thanks
Any syntax changes for running it for every 15 min interval

best way , you must use the crond for repetitive jobs

Don't have crontab utility

You can add

at 

command at the end of your script time.sh.

at -f time.sh now + 15 minutes

Ex.
time.sh

#!/bin/sh

echo "test"
at -f time.sh now + 15 minutes

Schedule it first time as

at -f time.sh now + 15 minutes

So while executing time.sh it will put another entry