linux – 将stderr和stdout重定向到Bash中的单独文件?

我可以使用以下命令将stdout和stderr重定向到单独的文件

dir >> out 2>> error

使用以下命令将stderror和stdout合并为一个文件

dir >> consolidate 2>&1

我怎么能一起做这个(出去,错误,一次合并文件)?

解决方法:

您可以尝试以下方式:

(command > >(tee out.txt) 2> >(tee error.txt >&2)) &> consol.txt

测试:

$ls
f
$ls g*
ls: cannot access g*: No such file or directory
$(ls g f > >(tee out.txt) 2> >(tee error.txt >&2)) &> consol.txt
$cat out.txt
f
$cat error.txt
ls: cannot access g: No such file or directory
$cat consol.txt
f
ls: cannot access g: No such file or directory

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...