I\'d like to be able to run a script in the background (i.e. without blocking the build process) when I build and run an iOS application in the simulator. I\'ve tried osas
Incase you are still interested.
These are the steps you need to follow: 1. Change the .sh extension of your script to .command 2. Rather than invoking /path/to/script.sh you now start using "open /path/to/script.command"
Thats pretty much it.
This will start a new terminal window and run the script you want in it.