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