Skip to content

Instantly share code, notes, and snippets.

@gucheen
Created August 1, 2017 07:40
Show Gist options
  • Save gucheen/e3df148d49f81e50ae00e3cba13c5796 to your computer and use it in GitHub Desktop.
Save gucheen/e3df148d49f81e50ae00e3cba13c5796 to your computer and use it in GitHub Desktop.
copy to clipboard in node under macOS
function pbcopy(data) {
const proc = childProcess.spawn('pbcopy');
proc.stdin.write(data); proc.stdin.end();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment