#!/bin/bash for((i=1;i <=10;i++)) do php /var/www/get.php done I have the above shell script that I'm using to execute get.php for 10 times . However it seems that the script(s) are executed one by one so I would like to know if it's possible to execute all of them at once (obviously without to type the php path command for 10 times )