You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Undefined variables or misspelled variables are a common source of bugs. When coding in bash, I always set -u. Really want this in rc. Suggest:
flag u [+|-]
To paraphrase bash:
Treat unset variables other than the special ‘*’ as an error when performing
variable expansion. An error message will be written to the standard error,
and a non-interactive shell will exit.
The text was updated successfully, but these errors were encountered:
Undefined variables or misspelled variables are a common source of bugs. When coding in bash, I always set -u. Really want this in rc. Suggest:
flag u [+|-]
To paraphrase bash:
The text was updated successfully, but these errors were encountered: