How do I copy results from the commandline directly to the clipboard?
On Windows's cmd.exe I can do simply echo "asd" | clip and it pipes output to the clipboard.
echo "asd" | clip
I tried to install xclip for that, and though it compiled, when called it prints:
xclip
Error: Can't open display: (null)
Using mouse is not the solution.
In Build 14393 or later, if you want to copy something to clipboard in WSL console, just add '.exe' to what you do in Windows cmd.
echo "aaa"|clip.exe
To read from clipboard:
powershell.exe -command "Get-Clipboard"
2.1m questions
2.1m answers
60 comments
57.0k users