We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
[[ "$1" = "-v" -a -z "$2" ]]
[[ "$1" = "-v" && -z "$2" ]]
-a for logical AND is not supported in a [[ .. ]] expression. Use && instead.
-a
[[ .. ]]
&&
None.