14

我正在使用Moshtmux

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

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

4

1 回答 1

21

这有效:

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
于 2012-06-12T14:28:31.093 回答