Data Passthrough?
zQueal opened this issue · 0 comments
zQueal commented
echo "testing" | gocopy
Works perfectly well, however, it doesn't return data to stdout, which should IMO be the default behavior. If you want to supress output, then pass a flag;
> echo "testing" | gocopy
"testing"
> echo "testing" | gocopy -q
>
Since gocopy
slurps all input, even using tee
as a workaround doesn't work.
> echo "testing" | tee | gocopy
>