summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/sh_14.sh
blob: bfa3d93a44b0982367fd0678ec8d247b4cc04f36 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
# Issue #17221 (sh syntax: escaped square brackets don't work in [[ ]])

[[ foo == [bar] ]]
[[ foo == \[bar\] ]]

echo [foo]
echo \[foo\]