在分离的屏幕中执行shell命令并再次分离

时间:2017-06-10 11:46:41

标签: shell unix gnu-screen

是否可以通过一个shell命令进入分离屏幕,执行命令和再次分离?

1 个答案:

答案 0 :(得分:0)

我使用tmux解决了这个问题。

开始屏幕命令:

tmux new -s nameOfScreen

为了在分离屏幕上运行命令,我使用了send-keys方法:

tmux send-keys -t tab "command" Enter