将屏幕输出重定向到标准输出

时间:2020-02-14 07:48:31

标签: shell

我正在使用屏幕,并且希望获得程序的正确输出。

screen echo 0
## Not very useful output
> [screen is terminating]


screen -L -Logfile screen.log echo 0
> [screen is terminating]
cat screen.log
> 0

我想在标准输出中获取screen.log的输出,我不在乎它是否与[screen is terminating]混合使用。理想情况下,我会这样做:

screen -L -Logfile /dev/stdout echo 0

但是它不起作用。有办法实现吗?

0 个答案:

没有答案