我想从我的 C 程序中执行以下命令:
ssh -t -t root@192.168.3.21 "export LINES=40;export COLUMNS=124;export TERM=xterm;$SHELL -i" 0 < t_in 1 > t_out
如果我使用系统调用,如下所示:
system("ssh -t -t root@192.168.3.21 \"export LINES=40;export COLUMNS=124;export TERM=xterm;$SHELL -i\" 0<t_in 1>t_out");
效果很好。但是我需要获取SSH进程的PID,所以必须使用execlp。
到目前为止我尝试的是:
pid = fork();
if(pid == 0) {
fd_in = open("td_in", O_RDWR | O_NONBLOCK);
dup2(fd_in, 0);
close(fd_in);
fd_out = open("td_out", O_RDWR | O_NONBLOCK);
dup2(fd_out, 1);
close(fd_out);
execlp("ssh", "ssh", "-t", "-t", "root@192.168.3.21", "\"export LINES=40;export COLUMNS=124;export TERM=xterm;$SHELL -i\"", 0);
} else {
// not important here
}
运行它时它会进入 SSH 登录并在引入密码后出现错误:
bash:export LINES=40;export COLUMNS=124;export TERM=xterm;/bin/bash -i: 没有那个文件或目录。与 192.168.3.21 的连接已关闭。
t_in 和 t_out 是一些 fifo(命名管道)
我的问题是执行上述命令的正确 execlp 调用应该是什么。谢谢