The main.sh shell script is missing the arguments that deals with buffering issues.
The stdout / stderr / stdin are attached to the controlling terminal / real terminal via pipes (specifically in Unix-based systems). This causes the output to get buffered and the text prompts not getting flushed. Which results the text prompts not being printed in the output
The main.sh shell script is missing the arguments that deals with buffering issues.
The stdout / stderr / stdin are attached to the controlling terminal / real terminal via pipes (specifically in Unix-based systems). This causes the output to get buffered and the text prompts not getting flushed. Which results the text prompts not being printed in the output