标签: bash macos
我有一些bash脚本可以捕获stdout和stderr并将其附加到文件中。
echo asdf &>>asdf
这在我的ubuntubox上运行得很好,但显然在osx上是不允许的。
-bash: syntax error near unexpected token `>'
是否有简单的解决方法?
由于
答案 0 :(得分:3)
像这样:
echo asdf >> log_file_name 2>&1