Skip to content

Instantly share code, notes, and snippets.

@hrwgc
Last active December 20, 2015 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hrwgc/6050124 to your computer and use it in GitHub Desktop.
Save hrwgc/6050124 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import os
def CopyToClipboard(text):
cmd = "echo '%s' | tr -d \"\\\n\" | pbcopy" % text
os.system(cmd)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment