我通过ssh(通过子进程)连接到远程服务器,所以我想在终端中看到它的输出,然后当我退出服务器时,我回到我的节点程序。除了一旦我连接到服务器,我通过终端输入的任何东西都会被复制。我认为这是因为我正在显示原始process.stdin.pipe
和ssh.stdin
。我怎么能阻止这个?代码如下,以及服务器内的简单ls
的示例
var connect = function(callback) {
ssh.stdout.pipe(process.stdout, { end: false });
process.stdin.resume();
process.stdin.pipe(ssh.stdin, { end: false });
ssh.on('exit', function () {
callback();
});
};
ubuntu@ip-xxxx:~$ llss
test.html
ubuntu@ip-xxxx:~$