How to combine these two commands?: ./script.sh > logfile.log and ./script.sh 2> logfile.log
本问题已经有最佳答案,请猛点这里访问。
如何组合这两个命令?
1 | ./script.sh > logfile.log |
和
1 | ./script.sh 2> logfile.log |
谢谢!
在bash中,要将标准输出和标准错误重定向到同一文件,您可以编写
1 | ./script.sh &> logfile.log |
如果你想与其他shell兼容,
1 | ./script.sh > logfile.log 2>&1 |