up vote 3 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

os.system() just calls the system() system call ("man 3 system"). On most *nixes this means you get /bin/sh.

Note that export VAR=val is technically not standard syntax (though bash understands it, and I think ksh does too). It will not work on systems where /bin/sh is actually the Bourne shell. On those systems you need to export and set as separate commands. (This will work with bash too.)

link|improve this answer
feedback

These days you should be using the Subprocess module instead of os.system(). According to the documentation there, the default shell is /bin/sh. I believe that os.system() works the same way.

Edit: I should also mention that the subprocess module allows you to set the environment available to the executing process through the env parameter.

link|improve this answer
Indeed, /bin/sh (which is almost always some form of bourne shell) is almost always what is meant when anything *nix-related says "the shell" without qualification. It may also be useful to note that if you really need to execute some snippet under a specific non-bourne shell, you could pass the function something like '/path/to/tcsh -c "your tcsh snippet here"'. – Nicholas Knight May 25 '09 at 6:33
feedback

If your command is a shell file, and the file is executable, and the file begins with "#!", you can pick your shell.

#!/bin/zsh
Do Some Stuff

You can write this file and then execute it with subprocess.Popen(filename,shell=True) and you'll be able to use any shell you want.

Also, be sure to read this about os.system and subprocess.Popen.

link|improve this answer
i was going to point out that shell=True is not necessary, but then it occurred to me: is it the the shell that's responsible for interpreting shebangs and acting accordingly? – Matt Joiner Feb 13 '10 at 18:41
Correct. The shell interprets the "magic" bytes "#!" to see what other shell should really be using this file. – S.Lott Feb 13 '10 at 18:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.