tldr/pages/linux/xclip.md

38 lines
1.0 KiB
Markdown
Raw Normal View History

2016-01-27 04:41:31 +00:00
# xclip
2017-09-16 22:16:36 +01:00
> X11 clipboard manipulation tool, similar to `xsel`.
> Handles the X primary and secondary selections, plus the system clipboard (`Ctrl + C`/`Ctrl + V`).
> More information: <https://manned.org/xclip>.
2016-01-27 04:41:31 +00:00
2017-09-16 22:16:36 +01:00
- Copy the output from a command to the X11 primary selection area (clipboard):
2016-01-27 04:41:31 +00:00
2017-09-16 22:16:36 +01:00
`echo 123 | xclip`
2016-01-27 04:41:31 +00:00
2017-09-16 22:16:36 +01:00
- Copy the output from a command to a given X11 selection area:
`echo 123 | xclip -selection {{primary|secondary|clipboard}}`
- Copy the output from a command to the system clipboard, using short notation:
2016-03-29 02:22:33 +01:00
`echo 123 | xclip -sel clip`
2017-09-16 22:16:36 +01:00
- Copy the contents of a file into the system clipboard:
`xclip -sel clip {{input_file.txt}}`
- Copy the contents of a PNG into the system clipboard (can be pasted in other programs correctly):
`xclip -sel clip -t image/png {{input_file.png}}`
- Copy the user input in the console into the system clipboard:
`xclip -i`
2017-09-16 22:16:36 +01:00
- Paste the contents of the X11 primary selection area to the console:
`xclip -o`
- Paste the contents of the system clipboard to the console:
`xclip -o -sel clip`