xontrib-pipeliner icon indicating copy to clipboard operation
xontrib-pipeliner copied to clipboard

Let your pipe lines flow thru the Python code in xonsh.

Results 5 xontrib-pipeliner issues
Sort by recently updated
recently updated
newest added

Trying pipeliner on a Mac and the command never returns. This does not return: ``` > echo 1 | ppl 'line' ``` Neither does this: ``` > echo 1 |...

mac

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.

new feature

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...

bug
experimental

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,...

good first issue

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 |...