参见英文答案 >
In a shell script: echo shell commands as they are executed13个答案什么是最好的方法来设置一个bash脚本,打印每个命令之前执行它?
原文链接:https://www.f2er.com/bash/392986.html这将是伟大的调试目的。
我已经尝试这:
CMD="./my-command --params >stdout.txt 2>stderr.txt" echo $CMD `$CMD`
它应该做的是先打印:
./my-command --params >stdout.txt 2>stderr.txt