Return a shell-escaped string from *split_command*.
(split_command)
| 313 | |
| 314 | |
| 315 | def join(split_command): |
| 316 | """Return a shell-escaped string from *split_command*.""" |
| 317 | return ' '.join(quote(arg) for arg in split_command) |
| 318 | |
| 319 | |
| 320 | def quote(s): |
searching dependent graphs…