mirror of
https://github.com/opnsense/src.git
synced 2026-04-08 10:53:24 -04:00
* directly after a $
* directly after ${
* between the characters of a multi-character operator token
* within a parameter name
23 lines
119 B
Text
23 lines
119 B
Text
# $FreeBSD$
|
|
|
|
v0\
|
|
=abc
|
|
|
|
v=$(cat <\
|
|
<\
|
|
E\
|
|
O\
|
|
F
|
|
${v0}d
|
|
EOF
|
|
)
|
|
|
|
w=$(cat <\
|
|
<\
|
|
-\
|
|
EOF
|
|
efgh
|
|
EOF
|
|
)
|
|
|
|
[ "$v.$w" = "abcd.efgh" ]
|