1 2 3 4 5 6 7 8 9 10
#!/bin/sh if [ ! -z "$DISPLAY" ]; then exec xsel -ib elif type pbcopy >/dev/null 2>&1; then exec pbcopy else echo "System clipboard not supported" 1>&2 exit 1 fi