使用screen从命令行执行命令


2

有没有办法我们可以启动一个屏幕,执行命令并分离它而不实际进入屏幕?就像是

screen -[some option] [command tobe executed]

我需要这个,因为我有大约100个文件,每个文件都有不同的输入文件,我需要在屏幕上运行每个文件,如果以上是可能的,我需要做的就是创建一个shell脚本..

屏幕上有一个可以让我这样做的选项吗?

Answers:


1

您可以使用-d -m选项,例如,以分离模式运行屏幕。

screen -d -m some_cmd

谢谢..但如果我想将输出重定向到文件怎么办?像屏幕-d -m sudo ./mycode&>输出但这只是一个空白文件,输出实际显示在屏幕内..
Prasanth Madhavan 2011年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.