【发布时间】:2020-07-05 20:23:39
【问题描述】:
我通过 macOS 终端和 SSH 连接到 Debian VPS。当我附加到 VPS 中的 tmux 会话时,有没有办法可以在我的 Mac 上打开一个新的终端窗口?
【问题讨论】:
我通过 macOS 终端和 SSH 连接到 Debian VPS。当我附加到 VPS 中的 tmux 会话时,有没有办法可以在我的 Mac 上打开一个新的终端窗口?
【问题讨论】:
在macos设置->分享中,开启“远程登录”
然后在你的 VPS 中
ssh macos << EOF
osascript -e 'tell application "Terminal" to do script "/bin/bash"'
EOF
【讨论】: