mirror of
https://github.com/vim/vim.git
synced 2026-05-03 08:56:14 +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\]
|