Created
April 30, 2012 18:55
-
-
Save dstarh/2561278 to your computer and use it in GitHub Desktop.
custom osx plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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