我设计一个脚本来启动一个名为屏幕会话内的过程。
as_user "screen -p 0 -S **$command** -X eval 'stuff \"wine LFS.exe /cfg=**$command**.cfg\"\015'"
所以bash myscript.sh start test
将创建一个名为屏幕测试和运行test.cfg
与软件。
现在,我想我的脚本访问特定的屏幕会议,并做了CTRL + C停止正在运行的进程,所以我可以杀死屏幕会话。
事情是这样的:
as_user "screen -p 0 -S **$command** **... kill the process with ctrl-c...**"
as_user "screen -p 0 -S **$command** -X eval 'stuff \"exit\"\015'"