#!/bin/sh
if [ `uname` = Darwin ] ; then
  pbpaste
else
  xclip -selection clipboard -out
fi
