1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-21 21:15:26 +02:00
tldr/pages/linux/xclip.md
Managor ae436c1b00
linux/*: add option placeholders (#16192)
* batch1

* batch2

* batch3

* batch4

* Update matchpathcon.md

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages/linux/arecord.md

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>

---------

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2025-04-19 21:21:53 +00:00

1.2 KiB

xclip

X11 clipboard manipulation tool, similar to xsel. Handles the X primary and secondary selections, plus the system clipboard (<Ctrl c>/<Ctrl v>). See also: wl-copy. More information: https://manned.org/xclip.

  • Copy the output from a command to the X11 primary selection area (clipboard):

echo 123 | xclip

  • Copy the output from a command to a given X11 selection area:

echo 123 | xclip {{[-se|-selection]}} {{primary|secondary|clipboard}}

  • Copy the output from a command to the system clipboard, using short notation:

echo 123 | xclip {{[-se|-selection]}} clip

  • Copy the contents of a file into the system clipboard:

xclip {{[-se|-selection]}} clip {{input_file.txt}}

  • Copy the contents of a PNG into the system clipboard (can be pasted in other programs correctly):

xclip {{[-se|-selection]}} clip {{[-t|-target]}} image/png {{input_file.png}}

  • Copy the user input in the console into the system clipboard:

xclip {{[-i|-in]}}

  • Paste the contents of the X11 primary selection area to the console:

xclip {{[-o|-out]}}

  • Paste the contents of the system clipboard to the console:

xclip {{[-o|-out]}} {{[-se|-selection]}} clip