Skip to content

Instantly share code, notes, and snippets.

@AvianFlu
Created May 6, 2014 00:11
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 AvianFlu/c82e3970b4129e29884d to your computer and use it in GitHub Desktop.
Save AvianFlu/c82e3970b4129e29884d to your computer and use it in GitHub Desktop.
var spawn = require('child_process').spawn;
var child = spawn('ssh', ['root@198.199.85.48'], {
stdio: [0, 1, 2]
});
child.unref();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment