Skip to content

Instantly share code, notes, and snippets.

@mrsweaters
Created August 5, 2014 22:21
Show Gist options
  • Select an option

  • Save mrsweaters/f2cb83f2f131e19a2b54 to your computer and use it in GitHub Desktop.

Select an option

Save mrsweaters/f2cb83f2f131e19a2b54 to your computer and use it in GitHub Desktop.
def pbcopy(input)
str = input.to_s
IO.popen('pbcopy', 'w') { |f| f << str }
str
end
def pbpaste
`pbpaste`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment