I am using /bin/tcsh as my default shell.
However, the tcsh style command os.system('setenv VAR val') doesn't work for me. But os.system('export VAR=val') works.
So my question is how can I know the os.system() run command under which shell?
|
1
|
|
|
|
|
|
Note that |
||
|
|
|
|
If your command is a shell file, and the file is executable, and the file begins with "#!", you can pick your shell.
You can write this file and then execute it with Also, be sure to read this about |
||
|
|
|
|
These days you should be using the Subprocess module instead of Edit: I should also mention that the subprocess module allows you to set the environment available to the executing process through the |
|||
|