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