2016-01-27 13:41:31 +09:00
|
|
|
# xclip
|
|
|
|
|
2017-09-16 22:16:36 +01:00
|
|
|
> X11 clipboard manipulation tool, similar to `xsel`.
|
2025-03-09 14:03:08 +02:00
|
|
|
> Handles the X primary and secondary selections, plus the system clipboard (`<Ctrl c>`/`<Ctrl v>`).
|
2024-02-14 17:25:13 -03:00
|
|
|
> See also: `wl-copy`.
|
2022-03-22 03:07:48 +10:00
|
|
|
> More information: <https://manned.org/xclip>.
|
2016-01-27 13:41:31 +09: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 13:41:31 +09:00
|
|
|
|
2017-09-16 22:16:36 +01:00
|
|
|
`echo 123 | xclip`
|
2016-01-27 13:41:31 +09:00
|
|
|
|
2017-09-16 22:16:36 +01:00
|
|
|
- Copy the output from a command to a given X11 selection area:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`echo 123 | xclip {{[-se|-selection]}} {{primary|secondary|clipboard}}`
|
2017-09-16 22:16:36 +01:00
|
|
|
|
2020-11-27 20:10:03 +01:00
|
|
|
- Copy the output from a command to the system clipboard, using short notation:
|
2016-03-29 09:22:33 +08:00
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`echo 123 | xclip {{[-se|-selection]}} {{[c|clipboard]}}`
|
2016-03-29 09:22:33 +08:00
|
|
|
|
2017-09-16 22:16:36 +01:00
|
|
|
- Copy the contents of a file into the system clipboard:
|
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`xclip {{[-se|-selection]}} {{[c|clipboard]}} {{input_file.txt}}`
|
2017-09-16 22:16:36 +01:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Copy the contents of a PNG into the system clipboard (can be pasted in other programs correctly):
|
2019-06-02 14:09:10 +02:00
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`xclip {{[-se|-selection]}} {{[c|clipboard]}} {{[-t|-target]}} image/png {{input_file.png}}`
|
2019-06-02 14:09:10 +02:00
|
|
|
|
2020-11-27 20:10:03 +01:00
|
|
|
- Copy the user input in the console into the system clipboard:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`xclip {{[-i|-in]}}`
|
2020-11-27 20:10:03 +01:00
|
|
|
|
2017-09-16 22:16:36 +01:00
|
|
|
- Paste the contents of the X11 primary selection area to the console:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`xclip {{[-o|-out]}}`
|
2017-09-16 22:16:36 +01:00
|
|
|
|
|
|
|
- Paste the contents of the system clipboard to the console:
|
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`xclip {{[-o|-out]}} {{[-se|-selection]}} {{[c|clipboard]}}`
|