I have a bash script which is run by using an exec node, on a timer.
The script also generates echo statements, such as echo "script started... but they do not appear in any of the 3 exec node outputs.
I really need the outputs because they would trigger other actions in a node-RED flow.
As long as your exec node is set to output while the command is running - spawn mode, you should get a message generated by each echo command in your script.
>&1 is definitely not needed.
Can you export the timer, exec and debug nodes to share?
If the script is not confidential, share that too.