Skip to content

Instantly share code, notes, and snippets.

@lgarron
Created June 18, 2011 16:01
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 lgarron/1033226 to your computer and use it in GitHub Desktop.
Save lgarron/1033226 to your computer and use it in GitHub Desktop.
Mathematica Copy to Clipboard (Correctly)
Copy[text_] :=
With[{tempClipboardFile =
FileNameJoin[{$TemporaryDirectory,
"mathematica_clipboard_temp.txt"}]},
Export[tempClipboardFile, text, "text"];
Run["cat " <> tempClipboardFile <> " | pbcopy"];
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment