2016-06-20 23:36:03 +01:00
|
|
|
# xsel
|
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
> X11 selection and clipboard manipulation tool.
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2017-04-28 23:34:51 +01:00
|
|
|
- Use a command's output as input of the clip[b]oard (equivalent to `Ctrl + C`):
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`echo 123 | xsel -ib`
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
- Use the contents of a file as input of the clipboard:
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`cat {{file}} | xsel -ib`
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2017-04-28 23:34:51 +01:00
|
|
|
- Output the clipboard's contents into the terminal (equivalent to `Ctrl + V`):
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`xsel -ob`
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
- Output the clipboard's contents into a file:
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`xsel -ob > {{file}}`
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
- Clear the clipboard:
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`xsel -cb`
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 09:43:21 +01:00
|
|
|
- Output the X11 primary selection's contents into the terminal (equivalent to a mouse middle-click):
|
2016-06-20 23:36:03 +01:00
|
|
|
|
2016-06-25 02:07:46 +01:00
|
|
|
`xsel -op`
|