bin: add pbcopy_l/pbpaste_l for use under Linux

This commit is contained in:
Paul Walker
2024-08-29 10:08:35 +01:00
parent 360b9ef4c1
commit e51c90dd49
2 changed files with 10 additions and 0 deletions

5
bin/pbcopy_l Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
if [ "$(uname)" != "Linux" ] ; then
/usr/bin/pbcopy $*
fi
xsel -i -b

5
bin/pbpaste_l Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
if [ "$(uname)" != "Linux" ] ; then
/usr/bin/pbpaste $*
fi
xsel -o -b