I would like to build a python script, which can manipulate the state of it's calling bash shell, especially it's working directory for the beginning.
With os.chdir
or os.system("ls ..")
you can only change the interpreters path, but how can I apply the comments changes to the scripts caller then?
Thank you for any hint!