I have a script job.bin
for executing a code in python (pythoncode.py
) on a cluster, submitting jobs via qsub
. In job.bin
:
cd /path/to/my/python/code
python pythoncode.py
What happens if:
a) while pythoncode.py
is running, I change its content
b) while pythoncode.py
is held on queue, I change its content
pythoncode.py
contains some parameters that I can vary. In situations a) and b), will a change of any of these parameters affect the already begun or queuing run?