Is there anything in the standard library, or can anyone provide a recipe to escape anything going as an argument to a shell command?
For example, to ensure that it can be passed to the echo command:
>>> import os
>>> os.system('echo "2')
sh: Syntax error: Unterminated quoted string
I would like to escape the "2 string somehow. And there are various other example characters that it hates: "()><' and there are probably even more...
I can manually escape the things, but I need a function to do it to arbitrary input.
Edit: Just for the record, because there is some confusion: No I cannot use subprocess.Popen, I am invoking something in a third party application which uses subprocess.Popen(shell=True..). No I cannot change that application, and no I most certainly do not want to change that application. It uses the shell's features, and they are useful in this domain. Therefore, voting up an answer that says "Just use subprocess.Popen" is totally wrong, and ignores the question.
