mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-07 14:43:53 -05:00
8 lines
163 B
Bash
8 lines
163 B
Bash
|
command -v xsel > /dev/null
|
||
|
if [[ $? -eq 0 ]]; then
|
||
|
xsel -ib $@ && exit 0
|
||
|
fi
|
||
|
command -v wslclip > /dev/null
|
||
|
if [[ $? -eq 0 ]]; then
|
||
|
wslclip $@ && exit 0
|
||
|
fi
|