I have a list of arguments, e.g. ["hello", "bobbity bob", "bye"]. How would I format these so they would be passed appropriately to a shell?
Wrong:
>>> " ".join(args)
hello bobbity bob bye
Correct:
>>> magic(args)
hello "bobbity bob" bye
|
I have a list of arguments, e.g. Wrong:
Correct:
|
|||
|
You could use the undocumented but long-stable (at least since Oct 2004)
|
|||||
|
|
|
The easier way to solve your problem is to add \"...\" whenever your text has at least two words.
|
|||
|
|
|
If you're actually sending the values to a shell script, http://docs.python.org/library/subprocess.html?highlight=popen#subprocess.Popen Otherwise, I believe you're down to string manipulation. |
|||
|
|
|
What's wrong with the old-school approach:
It doesn't matter if single-word arguments are quoted as well. |
|||
"'s or backslashes?\'s?. – TokenMacGuy Aug 25 '11 at 14:37popen, but as a command line – Claudiu Aug 25 '11 at 14:41