dotfiles/common/users/homeModules/scripts/copy.sh
2025-06-24 14:02:20 -04:00

13 lines
259 B
Bash

command -v xsel > /dev/null
if [[ $? -eq 0 ]]; then
xsel -ib $@ && exit 0
exit 0
fi
command -v wslclip > /dev/null
if [[ $? -eq 0 ]]; then
wslclip $@ && exit 0
exit 0
fi
echo "failed to find clipboard command. install xsel or wslclip"
exit 1