Skip to content

Instantly share code, notes, and snippets.

@robsimpsondev
Created May 10, 2023 15:22
Show Gist options
  • Save robsimpsondev/42fef741b435579f7c115fece5738e06 to your computer and use it in GitHub Desktop.
Save robsimpsondev/42fef741b435579f7c115fece5738e06 to your computer and use it in GitHub Desktop.
Ruby copy to clipboard (macOS)
def pbcopy(input)
str = input.to_s
IO.popen('pbcopy', 'w') { |f| f << str }
str
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment