这个人一直在欺骗我一段时间。是否可以将stdout和stderr重定向到终端输出和程序?
我理解可以将输出重定向到一个文件和标准输出与tee
,但我想要它去一个程序(我的编辑器[TextMate])以及终端输出…肯定这是可能的(我知道它的可能与zsh …)
您可以使用命名管道,该管道用于您所描述的情况。
原文链接:/bash/389209.htmlmkfifo some_pipe command_that_writes_to_stdout | tee some_pipe \ & command_that_reads_from_stdin < some_pipe rm some_pipe
或者,在Bash:
command_that_writes_to_stdout | tee >(command_that_reads_from_stdin)