We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
[[ 0=1 ]]
[[ 0 = 1 ]]
[[ 0 = 1 ]] means "check if 0 and 1 are equal".
[[ str ]] is short form for [[ -n str ]], and means "check if str is non-empty". It doesn't matter if str happens to contain 0=1.
[[ str ]]
[[ -n str ]]
str
0=1
Always use spaces around the comparison operator in [..] and [[..]], otherwise it won't be recognized as an operator.
[..]
[[..]]
None.
There was an error while loading. Please reload this page.