vote up 6 vote down star

I've found myself needing to do this a couple of times lately and wondered if there was a way to do this in the OS already. Failing that, I've got a pretty good idea of how to write a script to do it, I just need to know how to access the clipboard in os x.

flag

61% accept rate

2 Answers

vote up 3 vote down check

Nevermind, figured it out.

 pbcopy < filename

  #copies contents of a text, rtf, or eps file to the clipboard


  pbpaste

  #pastes content of clipboard to stdout
link|flag
That's awesome. Where did you find this info, and are there other cool conduits between CLI world and GUI world? – slim Sep 18 '08 at 19:32
vote up 1 vote down

Yep, that's the way to go. Of course, you can also pipe output into it, ie, echo "test" | pbcopy.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.