mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
After an unescaped newline, there may be a here-document. Some places in case and for did not check for one. Reviewed by: bdrewery Differential Revision: https://reviews.freebsd.org/D32628
9 lines
85 B
Text
9 lines
85 B
Text
#
|
|
set -- dummy
|
|
read x <<EOF; for i
|
|
value
|
|
EOF
|
|
do
|
|
x=$x.$i
|
|
done
|
|
[ "$x" = value.dummy ]
|