6 lines
83 B
Bash
Executable File
6 lines
83 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$(uname)" != "Linux" ] ; then
|
|
/usr/bin/pbcopy $*
|
|
fi
|
|
xsel -i -b
|