如何在OS X上捕获bash上的stdout和stderr

时间:2017-06-15 13:18:42

标签: bash macos

我有一些bash脚本可以捕获stdout和stderr并将其附加到文件中。

echo asdf &>>asdf

这在我的ubuntubox上运行得很好,但显然在osx上是不允许的。

-bash: syntax error near unexpected token `>'

是否有简单的解决方法?

由于

1 个答案:

答案 0 :(得分:3)

像这样:

echo asdf >> log_file_name 2>&1