I have a app that fetches some feeds, is there a way i can get it to be done every 30 minutes?
(i've not installed a graphical desktop, so a terminal fix would be loveable :D)
|
|
|
Use your
Then enter a line like the following
Save it and it should run every 30 minutes of every hour, every day. Updated the 30 minutes part, was being too quick. Thanks @nicolas, you got a +1. |
|||||||||||
|
|
Cron sounds like what you're looking for. Log in as the user you want the task to be ran by, then type "crontab -e" Your favorite editor will open, and you will get a file with this format :
So to run '/home/foo/my_program' every 30min, you would add this line
/dev/null is there so you do not get the output sent by mail if your program writes something to stdout. |
|||||
|
|
This sounds exactly like a job for cron. This is a good howto use it, yes it's for ubuntu and you're using fedora, but as far as I'm aware there are no differences between the two regarding cron. |
|||
|
|
|
Use From the account of the user you wish to run the script:
Then add a new line as follows:
Then save the crontab, which will automatically install it. The job will then run every 30 minutes and email you any output. |
||||
|
|