1
0
Fork 0
dotfiles/.local/bin/scripts/xcp
2026-01-30 17:57:53 +03:00

12 lines
139 B
Bash
Executable file

#!/bin/sh
_fn() {
perl -pe "chomp if eof" |
xclip -selection clipboard
}
if [ -n "$1" ]; then
_fn < "$1"
else
_fn
fi