run unix script as scheduled job

Hi,

I want my unix script to run as a scheduled job such that the script is invoked once every 15 minutes. Is there any way to achieve this other than running the script as a cron job?

two at options:

while [ 1 ]
do
#do your task here
sleep 900 #15 minutes
done