clipboard icon indicating copy to clipboard operation
clipboard copied to clipboard

Data Passthrough?

Open zQueal opened this issue 4 years ago • 0 comments

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

>

zQueal avatar Dec 03 '21 18:12 zQueal