This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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'); |