xref: /freebsd/bin/sh/tests/parser/heredoc14.0 (revision 5eb81a4b4028113e3c319f21a1db6b67613ec7ab)
1#
2read x <<EOF; for i in "$x"
3value
4EOF
5do
6	x=$x.$i
7done
8[ "$x" = value.value ]
9