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