Append -xe
to #!/bin/bash
in the script you wish to see detailed output for.
#!/bin/bash -xe
Then run it as below to see the debug output and stdout and stderr on the screen, but also have it logged to a file.
./script.sh 2>&1 | tee output.log
Append -xe
to #!/bin/bash
in the script you wish to see detailed output for.
#!/bin/bash -xe
Then run it as below to see the debug output and stdout and stderr on the screen, but also have it logged to a file.
./script.sh 2>&1 | tee output.log