Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
linux/wl-copy Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# wl-copy
> Clear and copy to Wayland clipboard.
> See also: `wl-paste`, `xclip`.
> More information: <https://github.com/bugaevc/wl-clipboard>.
- Copy the text to the clipboard:
`wl-copy "{{text}}"`
- Pipe the command (`ls`) output to the clipboard:
`{{ls}} | wl-copy`
- Copy for only one paste and then clear it:
`wl-copy --paste-once "{{text}}"`
- Copy an image:
`wl-copy < {{path/to/image}}`
- Clear the clipboard:
`wl-copy --clear`