Already suggested answers .. Just show that the script is working. This, as you said, is not your need ...
As for a script already running that does not register / does not store any information. Well, the only true option I can come up with is to check what it handles. So if this is file / database processing .. you should be able to see modified / changed results.
If its all pure in memory, yours is more or less out of luck if you are not using something like a session.
But just checking if the script works ... is not needed at all ..., so if its processing a database, checking the database, if its processing files, check the files. Otherwise, your way out of luck.
When it comes to heavy cruncher scripts like when I do geocoding ... I store the results / processed data in local files. Therefore, if the script fails or stops. I can resume .. But in favor of this, I can run another script and read these files and see the progress or the last step.
Can it resume or start again? If it can be resumed, stop it and write it down or something so that you can control it? Otherwise, you just need to wait until it finishes.
source share