Mosh登录自动重新连接tmux会话

时间:2012-06-12 05:17:41

标签: tmux mosh

我正在使用Moshtmux

我想在mosh连接成功后运行命令“tmux attach -t 0 -d”。

当我通过mosh成功登录时,如何自动调用命令重新连接tmux?

1 个答案:

答案 0 :(得分:19)

这有效:

mosh $REMOTE tmux attach   # I didn't expect this to work

但这些都没有:

mosh $REMOTE "tmux attach -d"  # This should probably work
mosh $REMOTE tmux attach -d    # This correctly interprets -d as a mosh option

更新:正如Chris Johnson指出的那样,您可以使用' - '参数关闭选项处理,以便将整个tmux命令作为命令发送到远程服务器:

mosh $REMOTE -- tmux attach -t 0 -d