Skip to content

Instantly share code, notes, and snippets.

@dstarh
Created April 30, 2012 18:55
Show Gist options
  • Save dstarh/2561278 to your computer and use it in GitHub Desktop.
Save dstarh/2561278 to your computer and use it in GitHub Desktop.
custom osx plugin
#!/usr/bin/env bash
function copy() {
if [ ! $(uname) = "Darwin" ]
then
echo "This function only works with Mac OS X"
return 1
fi
cat "$*" | /usr/bin/pbcopy
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment