使用远程主机上的 tmux 在远程主机中运行本地脚本

使用远程主机上的 tmux 在远程主机中运行本地脚本

我设法通过 ssh 运行本地脚本:

ssh <user>@<host> 'bash -s' < /path/to/local_script.sh

还设法使用 tmux 在远程计算机中运行远程脚本:

ssh <user>@<host> tmux new-session -d -s <session-name> '/bin/bash  /path/to/script/in/remote/machine.sh'

但我想要这样的东西:

ssh <user>@<host> tmux new-session -d -s <session-name> 'bash -s' < /path/to/script/in/local/machine.sh

提前致谢

相关内容