bash set -e problems – ai conversation
In Bash, using standard command substitution (e.g., VAR=$(my_func)) while set -e is active can be problematic because the main script might not exit immediately if the subshell where the function…
In Bash, using standard command substitution (e.g., VAR=$(my_func)) while set -e is active can be problematic because the main script might not exit immediately if the subshell where the function…