nix/module/common/bash/module/Copypaste.sh
2024-03-04 03:04:57 +03:00

10 lines
192 B
Bash

# Copy stdin to system clipboard. *Example:* `echo hi \| copy`.
function copy() {
wl-copy
}
# Paste system clipboard to stdout. *Example:* `paste > file.txt`.
function paste() {
wl-paste
}