I have a php script that runs for about 30 minutes.
I'm calling the script every minute from the command line using cron.
Question: Can I have multiple instances of the same script running concurrently without one interfering with the other?
What I want to do is to be able to run a new instance each minute, and not have the new instance interfere with currently running processes.
For example, if one process generates a random password $password, would that value be affected if another process generates it's own $password?
TIA.