bin: add pbcopy_l/pbpaste_l for use under Linux
This commit is contained in:
5
bin/pbcopy_l
Executable file
5
bin/pbcopy_l
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
if [ "$(uname)" != "Linux" ] ; then
|
||||
/usr/bin/pbcopy $*
|
||||
fi
|
||||
xsel -i -b
|
||||
5
bin/pbpaste_l
Executable file
5
bin/pbpaste_l
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
if [ "$(uname)" != "Linux" ] ; then
|
||||
/usr/bin/pbpaste $*
|
||||
fi
|
||||
xsel -o -b
|
||||
Reference in New Issue
Block a user