You can use cron to do it.
Simply run crontab -e as your user.
Edit the file to say something similar to
Quote:
# m h dom mon dow command
0 * * * * /path/to/script
|
Such a crontab would cause /path/to/script to be run every hour (at 0 minutes) as your user.