Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gingray/ab2e9a6376aa6ccb516354c2bee74ab6 to your computer and use it in GitHub Desktop.
Save gingray/ab2e9a6376aa6ccb516354c2bee74ab6 to your computer and use it in GitHub Desktop.
Copy to Clipboard Using Ruby
# Mac
IO.popen('pbcopy', 'r+') { |clipboard| clipboard.puts html_out }
# Linux
IO.popen(’xsel –clipboard –input’, ‘r+’) { |clipboard| clipboard.puts html_out }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment