Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-20 00:20:58 +00:00
parent 846fc1563d
commit a360d4dc45
153 changed files with 493 additions and 434 deletions

View File

@@ -16,28 +16,28 @@ source: https://github.com/tldr-pages/tldr.git
- Copy the output from a command to a given X11 selection area:
`echo 123 | xclip -selection {{primary|secondary|clipboard}}`
`echo 123 | xclip {{[-se|-selection]}} {{primary|secondary|clipboard}}`
- Copy the output from a command to the system clipboard, using short notation:
`echo 123 | xclip -sel clip`
`echo 123 | xclip {{[-se|-selection]}} clip`
- Copy the contents of a file into the system clipboard:
`xclip -sel clip {{input_file.txt}}`
`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 -sel clip -t image/png {{input_file.png}}`
`xclip {{[-se|-selection]}} clip {{[-t|-target]}} image/png {{input_file.png}}`
- Copy the user input in the console into the system clipboard:
`xclip -i`
`xclip {{[-i|-in]}}`
- Paste the contents of the X11 primary selection area to the console:
`xclip -o`
`xclip {{[-o|-out]}}`
- Paste the contents of the system clipboard to the console:
`xclip -o -sel clip`
`xclip {{[-o|-out]}} {{[-se|-selection]}} clip`