Questions tagged «piping»

2
在bash中同时输出stdout和stderr?
似乎较新版本的bash具有&>运算符,(如果我理解正确的话)该运算符会将stdout和stderr都重定向到文件(&>>如Adrian所阐明的那样,追加到文件中)。 实现同一目标的最简单方法是什么,而是通过管道传递到另一个命令? 例如,在这一行: cmd-doesnt-respect-difference-between-stdout-and-stderr | grep -i SomeError 我希望grep可以匹配stdout和stderr中的内容(有效地,将它们组合成一个流)。 注意:这个问题是在询问管道,而不是重定向-因此,它不是当前标记为重复的问题的重复。
156 bash  stdout  stderr  piping 
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.