
xsel
List of commands for xsel:
-
xsel:tldr:43bbf xsel: Use a command's output as input of the clip[b]oard (equivalent to `Ctrl + C`).$ echo 123 | xsel -ibtry on your machineexplain this command
-
xsel:tldr:8bd86 xsel: Output the clipboard's contents into the terminal (equivalent to `Ctrl + V`).$ xsel -obtry on your machineexplain this command
-
xsel:tldr:9eff6 xsel: Use the contents of a file as input of the clipboard.$ cat ${filename} | xsel -ibtry on your machineexplain this command
-
xsel:tldr:b10da xsel: Output the X11 primary selection's contents into the terminal (equivalent to a mouse middle-click).$ xsel -optry on your machineexplain this command
-
xsel:tldr:d4e95 xsel: Output the clipboard's contents into a file.$ xsel -ob > ${filename}try on your machineexplain this command