Add pbcopy / pbpaste as aliases

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-09-15 17:19:35 +02:00
parent 47dc13d6f9
commit fb302fa9ed
Signed by: luzifer
SSH Key Fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
2 changed files with 9 additions and 0 deletions

4
bin/pbcopy Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
exec xclip -selection c -i "$@"

5
bin/pbpaste Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
exec xclip -selection c -o "$@"