How can I determine from a Perl script if it's running through SGE or locally from the command line?
|
feedback
|
|
From http://www.cbi.utsa.edu/sge_tutorial:
Checking %ENV should tell you if it is run through SGE. | |||
feedback
|
|
You can try something like this:
This works by checking the parent process of your program. If the parent process is sge_shepherd, then it was started by the SGE exec daemon. Depending on what version of Grid Engine you're using, the name might be different. | |||
|
feedback
|