UNPKG

idk

Version:

This is a node.js command line utility that will speed up your development process by 4x.

14 lines (9 loc) 289 B
#!/usr/bin/env node var terminal = require('child_process').spawn('bash'); terminal.on('exit', function (code) { console.log('¯\\_(ツ)_/¯ copied to clipboard'); }); setTimeout(function() { terminal.stdin.write("printf \"¯\\_(ツ)_/¯\" | pbcopy"); terminal.stdin.end(); }, 10);