How can I reverse the results of a shlex.split? That is, how can I obtain a quoted string that would "resemble that of a Unix shell", given a list of strings I wish quoted?

Update0

I've located a Python bug, and made corresponding feature requests here.

link|improve this question

78% accept rate
Out of curiosity, why do you need this if subprocess.Popen takes a list for the command? (when shell=False) – tokland Jan 20 '11 at 15:18
@tokland: I'm not actually using the output of shlex.split for Popen, I'm parsing a list of paths provided by the user. I allow them to use shell-style splitting. – Matt Joiner Jan 21 '11 at 1:18
ok, it makes sense. – tokland Jan 21 '11 at 7:59
feedback

5 Answers

up vote 5 down vote accepted

[edit] How about using the good old pipes.quote?

import pipes
strings = ["ls", "/etc/services", "file with spaces"]
command = " ".join(pipes.quote(s) for s in strings)
print command # ls /etc/services 'file with spaces'

.

link|improve this answer
1  
Interesting that pipes.quote isn't listed in the documentation! However this is exactly what I'm looking for. – Matt Joiner Jan 21 '11 at 1:23
See my update, and thanks for the answer. – Matt Joiner Jan 21 '11 at 1:51
feedback

We now (3.3) have a shlex.quote function. It’s none other that pipes.quote moved and documented (code using pipes.quote will still work). See http://docs.python.org/dev/library/shlex for documentation and http://bugs.python.org/issue9723 for the whole discussion.

subprocess.list2commandline is a private function that should not be used. It could however be moved to shlex and made officially public. See also http://bugs.python.org/issue1724822

link|improve this answer
feedback

Both 'foo' and "'foo'" are transformed by shlex.split to the same list:

In [44]: shlex.split("'foo'")
Out[44]: ['foo']

In [45]: shlex.split("foo")
Out[45]: ['foo']

So I don't think it is possible to reverse shlex.split in all cases, but this might get you close:

In [20]: import subprocess
In [21]: subprocess.list2cmdline(shlex.split('prog -s "foo bar"'))
Out[21]: 'prog -s "foo bar"'

In [22]: subprocess.list2cmdline(shlex.split('prog -s "foo bar" "baz"'))
Out[22]: 'prog -s "foo bar" baz'
link|improve this answer
What's the interpreter you're using? – Matt Joiner Jan 20 '11 at 15:09
@Matt Joiner: ipython: ipython.scipy.org/moin – unutbu Jan 20 '11 at 15:47
feedback

subprocess uses subprocess.list2cmdline(). It's not an official public API, but it's mentioned in the subprocess documentation and I think it's pretty safe to use. It's more sophisticated than pipes.open() (for better or worse).

link|improve this answer
feedback

For what it's worth, this is what I'm using in the interim:

def shlex_unsplit(tokens):
    ' '.join(('"' + x + '"' for x in tokens))

I wonder if any escaping of quotation characters is required.

link|improve this answer
oh, then my answer won't be help much :-( – tokland Jan 20 '11 at 15:13
feedback

Your Answer

 
or
required, but never shown

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