mirror of
https://github.com/vim/vim.git
synced 2026-04-24 20:49:15 +02:00
9 lines
150 B
Bash
9 lines
150 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Issue #17221 (sh syntax: escaped square brackets don't work in [[ ]])
|
||
|
|
|
||
|
|
[[ foo == [bar] ]]
|
||
|
|
[[ foo == \[bar\] ]]
|
||
|
|
|
||
|
|
echo [foo]
|
||
|
|
echo \[foo\]
|