1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/xsel.md

29 lines
627 B
Markdown
Raw Normal View History

2016-06-21 10:36:03 +12:00
# xsel
> X11 selection and clipboard manipulation tool.
> More information: <https://manned.org/xsel>.
2016-06-21 10:36:03 +12:00
- Use a command's output as input of the clip[b]oard (equivalent to `<Ctrl c>`):
2016-06-21 10:36:03 +12:00
`echo 123 | xsel -ib`
2016-06-21 10:36:03 +12:00
- Use the contents of a file as input of the clipboard:
2016-06-21 10:36:03 +12:00
2022-12-04 10:12:49 +01:00
`cat {{path/to/file}} | xsel -ib`
2016-06-21 10:36:03 +12:00
- Output the clipboard's contents into the terminal (equivalent to `<Ctrl v>`):
2016-06-21 10:36:03 +12:00
`xsel -ob`
2016-06-21 10:36:03 +12:00
- Output the clipboard's contents into a file:
2016-06-21 10:36:03 +12:00
2022-12-04 10:12:49 +01:00
`xsel -ob > {{path/to/file}}`
2016-06-21 10:36:03 +12:00
- Clear the clipboard:
2016-06-21 10:36:03 +12:00
`xsel -cb`
2016-06-21 10:36:03 +12:00
- Output the X11 primary selection's contents into the terminal (equivalent to a mouse `<MiddleClick>`):
2016-06-21 10:36:03 +12:00
`xsel -op`