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