Assuming I'm a big unix rookie, - I'm running a curl request through cron every 15 minutes. - Curl basically is used to load a web page (php) that given some arguments, acts as a script like:
curl http://mysite.com/?update_=1
What I would like to achieve is to run another "script" using this curl technique, - every time the other script is run - before the other script is run
I have read that curl accepts multiple urls in one command but i'm unsure if this would process the ulrs sequentially or in "parallel".