Trying to copy to clipboard from command line by using command:
xclip /etc/apt/sources.list
Trying to get out from clipboard:
xclip -o
This prints the content of sources.list
and it is fine.
But now I try to paste into eclipse
project and got some old clipboard content. Looks like xclip
uses its internal clipboard.
How to copy into system clipboard from command line?
xclip /etc/apt/sources.list
command – Charles Green Dec 09 '15 at 15:01