#!/usr/bin/env bash
read contents
if [[ -x `which wl-copy > /dev/null 2>&1` ]]; then
    echo "$contents" | wl-copy
else
    echo "$contents" | xclip -selection clipboard
fi