dotfiles/common/users/homeModules/scripts/copy.sh

8 lines
163 B
Bash
Raw Normal View History

2024-11-26 17:01:58 -05:00
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