I have tried the following options
echo "Hello world" | xclip -i selection primary | xclip -i selection clipboard
Você estava realmente perto de lá ...
Se você usar -f
com o primeiro comando xclip
, ele irá imprimir o texto de volta para stdout e você poderá canalizá-lo para o segundo comando xclip
:
echo "Hello World" | xclip -i -sel p -f | xclip -i -sel c
De man xclip
:
-f, -filter
when xclip is invoked in the in mode with output level set to
silent (the defaults), the filter option will cause xclip to print
the text piped to standard in back to standard out unmodified