Skip to content

Instantly share code, notes, and snippets.

View rtreffer's full-sized avatar
🔵

Rene Treffer rtreffer

🔵
View GitHub Profile
@btoews
btoews / basic-node-shell.js
Created October 13, 2011 03:36
node remote shell
//Minimalistic remote shell over tcp using nodejs
//This doesn't work. I think it should...
//Additionally, this isn't nearly as cool
//as the next file because it gives you no
//ability to modify/inspect shell input/output
var spawn = require('child_process').spawn;
var net = require('net');