Skip to content

Instantly share code, notes, and snippets.

@dreadjr
Forked from mkremins/pbcopy.js
Created July 20, 2017 16:46
Show Gist options
  • Save dreadjr/62beb2c7dd8e3cc09201cb7d4e1b5c63 to your computer and use it in GitHub Desktop.
Save dreadjr/62beb2c7dd8e3cc09201cb7d4e1b5c63 to your computer and use it in GitHub Desktop.
node.js: put text into OS X clipboard
function pbcopy(data) {
var proc = require('child_process').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