[Solved] Keep loading my script [duplicate]

You should use a cronjob. Start by opening you terminal and run crontab -e You may need to configure your crontab settings (default editor) if this is the first time you are using crontab. Now, in your editor, you have to call your php script like this: (it is set to be called each hour) … Read more

[Solved] Bash script to download data from url

You have two bits here. One is to schedule a cron job and the other is to get the file & save it. Steps : Open the terminal & run crontab -e minute(0-59) hour(0-23) day(1-31) month(1-12) weekday(0-6) command In place of minute, hour, day, month & weekday. Also provide the command to run. The command … Read more