本文介绍了GNU的画面:运行脚本,将命令发送到它正在被运行屏幕会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以编写一个脚本来更改名称并打开监控当前选项卡假设它在屏幕上正在运行?
Is it possible to write a script to change the name and turn on monitoring for the current tab assuming that it is being run in screen?
感谢。
推荐答案
我觉得这个作品:
if [-n "$STY"]; then
screen -X title "foo"
screen -X monitor on
fi
这篇关于GNU的画面:运行脚本,将命令发送到它正在被运行屏幕会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!