3
bash: configura -x logs para arquivo
Eu tenho um script de shell com set -xa saída detalhada / depuração: #!/bin/bash set -x command1 command2 ... A saída é assim: + command1 whatever output from command1 + command2 whatever output from command2 Meu problema é, a saída de shell (causada por set -x) vai para o stderr, …