-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2110
koalaman edited this page Aug 16, 2015
·
4 revisions
"In .., use || instead of -o.
[[ "$1" = "-v" -o "$1" = "-help" ]]
[[ "$1" = "-v" || "$1" = "-help" ]]
-o
for logical OR is not supported in a [[ .. ]]
expression. Use ||
instead.
None.