-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2212
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
if [ ]
then
echo "Temporarily disabled"
fi
if false
then
echo "Temporarily disabled"
fi
[ ]
is a somewhat obscure way of expressing falsehood, and the behavior is likely intended to allow the incorrectly quoted command [ $var ]
to still work when the variable is unset.
POSIX has a more descriptive command false
for this.
None. This is a stylistic suggestion, and has no effect on how the script works.