I would like an API like this: ``` python from spm import run run('echo', 'header').and_( run('cat', 'file')).and_( run('echo', 'footer')) # This should be equivalent to: # $ echo header && cat file && echo footer ```