xontrib-pipeliner
xontrib-pipeliner copied to clipboard
Let your pipe lines flow thru the Python code in xonsh.
Trying pipeliner on a Mac and the command never returns. This does not return: ``` > echo 1 | ppl 'line' ``` Neither does this: ``` > echo 1 |...
Would be nice if there was a mode where lambda argument instead of line-by-line was a file object for the whole input stream.
Hi! I'm playing with xonsh and this contrib is really useful to leverage it. I detected some inconsistencies with the experimental feature @(). The following can help polish it. The...
Options: * Skip exceptions * Skip empty lines in input * Skip empty lines in output * Show errors without exceptions * Show statistics (input lines cnt, output lines cnt,...
https://github.com/xonsh/xonsh/discussions/6010 ```xsh cd /tmp echo @("""#!/usr/bin/env bash while IFS= read line; do echo "$line" sleep 1 done """) > lazycat.sh chmod +x lazycat.sh xontrib load pipeliner yes | head |...