mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 13:58:30 -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
90 B
Text
8 lines
90 B
Text
#
|
|
read x <<EOF; case $x
|
|
value
|
|
EOF
|
|
in
|
|
value) x=$x.extended
|
|
esac
|
|
[ "$x" = value.extended ]
|