重定向日志而不捕获交互提示

重定向日志而不捕获交互提示

我启动了一个命令,它会打印许多消息(错误、警告等),然后把我带入交互式命令提示符:

$ verbose_tool
launching foo
(error) blabla
(warning) blablabla
...lots more of this...
(warning) blablabla
repl>

我想将所有“日志”消息重定向到一个文件,但是当我尝试像这样启动该工具时:

$ verbose_tool > logfile.txt

...然后它repl>也捕获了,我被卡住了。

如何重定向消息提示repl>到一个文件,而不捕获 repl 本身?

相关内容