-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2107
Joachim Ansorg edited this page Nov 12, 2021
·
4 revisions
[ "$1" = "-v" && -z "$2" ]
[ "$1" = "-v" ] && [ -z "$2" ]
&&
can not be used in a [ .. ]
test expression. Instead, make two [ .. ]
expressions and put the &&
between them.
None.