#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' if [ $(uname) == "Darwin" ]; then if [ "$@" == "-i" ]; then pbcopy elif [ "$@" == "-o" ]; then pbpaste fi else xclip "$@" fi exit 0