我正在尝试使用 Linux 机器上的 bash 脚本在远程 Linux 机器上自动化一些事情,并有一个工作命令(大括号是 cmd 连接的遗留物):
(ssh -i /path/to/private_key user@remoteHost 'sh -c "echo 1; echo 2; echo 3; uname -a"')
但是,如果连接一个&符号以在后台执行它,它似乎会执行,但不会在 stdout 和 stderr 上打印任何输出,甚至重定向到文件(大括号内)也不起作用......:
(ssh -i /path/to/private_key user@remoteHost 'sh -c "echo 1; echo 2; echo 3; uname -a"') &
顺便说一句,我ssh
在 Linux 2.4.37.10 上的 BusyBox v1.17.4 中运行客户端 dropbear v0.52(在 WRT54G 上构建的 TomatoUSB)。
有没有办法获得输出?这种行为的原因是什么?
编辑:
为方便起见,这是简单的ssh
帮助输出(在我的 TomatoUSB 上):
Dropbear client v0.52
Usage: ssh [options] [user@]host[/port][,[user@]host/port],...] [command]
Options are:
-p <remoteport>
-l <username>
-t Allocate a pty
-T Don't allocate a pty
-N Don't run a remote command
-f Run in background after auth
-y Always accept remote host key if unknown
-s Request a subsystem (use for sftp)
-i <identityfile> (multiple allowed)
-L <listenport:remotehost:remoteport> Local port forwarding
-g Allow remote hosts to connect to forwarded ports
-R <listenport:remotehost:remoteport> Remote port forwarding
-W <receive_window_buffer> (default 12288, larger may be faster, max 1MB)
-K <keepalive> (0 is never, default 0)
-I <idle_timeout> (0 is never, default 0)
-B <endhost:endport> Netcat-alike forwarding
-J <proxy_program> Use program pipe rather than TCP connection
1天后修改:
牙套不会受伤,无论有无相同的结果。我想将 ssh 身份验证置于后台,因此该-f
选项不是解决方案。有趣的旁注:如果指定了意外选项(如-v
),则会显示错误消息WARNING: Ignoring unknown argument '-v'
- 即使放在后台,因此从后台进程获取输出通常在我的环境中工作。
我在 x86 Ubuntu 常规ssh
客户端上试过:它可以工作。dbclient
我也在x86 Ubuntu 上试过:也可以。所以这个问题似乎特定于 TomatoUSB 构建 - 或者在“dropbear v0.52”内部是 TomatoUSB 构建和 Ubuntu 提供的构建之间的未知修复(帮助输出的差异只是双倍大小的默认接收窗口缓冲区在 Ubuntu 上)......进程如何知道它是否被置于后台?有解决问题的方法吗?