Add pbcopy / pbpaste as aliases
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
47dc13d6f9
commit
fb302fa9ed
2 changed files with 9 additions and 0 deletions
4
bin/pbcopy
Executable file
4
bin/pbcopy
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
exec xclip -selection c -i "$@"
|
5
bin/pbpaste
Executable file
5
bin/pbpaste
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
exec xclip -selection c -o "$@"
|
||||
|
Loading…
Reference in a new issue