Skip to content

Instantly share code, notes, and snippets.

@tncbbthositg
Created March 2, 2015 17:08
Show Gist options
  • Save tncbbthositg/96bfaf644172595960eb to your computer and use it in GitHub Desktop.
Save tncbbthositg/96bfaf644172595960eb to your computer and use it in GitHub Desktop.
pbcopy support for irb
def pbcopy input
input.to_s.tap do |value|
IO.popen('pbcopy', 'w') { |clipboard| clipboard << value }
end
end
def pbpaste
puts `pbpaste`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment