Is there any existing utility that can parse a linux command line with recognition of basic piping and redirection: '|', '<', and, '>'? Preferably this can be used for as parameters for a subprocess call instead of using os.system.

shlex.split() does basic parsing, but its output cannot always be used by subprocess.Popen like in this example:

sed -f script.sed < infile > outfile

link|improve this question
3  
So you want to rewrite the shell in Python? Why not simply call the shell instead? – Sven Marnach Mar 7 '11 at 21:12
feedback

2 Answers

up vote 0 down vote accepted

Such a module would provide nothing that Popen with the shell=True option does not already provide.

See http://docs.python.org/library/subprocess.html#using-the-subprocess-module

It won't exist.

link|improve this answer
feedback

Hotwire seems like it can do this, this web page has some information on how this works.

IPython IPipe also has a different way to do some of the same things as Hotwire.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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