Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个与此类似的问题:
在我的 bash 循环中,如果 ssh 连接了一些服务器列表,则 bash 脚本退出
不幸ssh的是,它是从我无法编辑的 perl 脚本中调用的(因此我将无法添加-n到sshcommad)。
ssh
-n
还能做什么?
在您的路径中放置一个假ssh的,将调用委托给真正的 ssh 并添加-n
我做了:
my_script < /dev/null
它工作得很好。