`pbcopy` and `pbpaste` are one of my most-loved in the list. Dealing with some minified json, switching to iTerm, doing `pbpaste | json_pp | pbcopy` and having a clean output is _so_ nice.
Those are so useful that I wrote trivial shell functions that do the same under Linux.
if [ `uname` == "Darwin" ]; then
pbcopy
else
xsel --clipboard
fi