mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -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
8 lines
80 B
Text
8 lines
80 B
Text
#
|
|
read x <<EOF; for i in "$x"
|
|
value
|
|
EOF
|
|
do
|
|
x=$x.$i
|
|
done
|
|
[ "$x" = value.value ]
|