summaryrefslogtreecommitdiff
path: root/corebinutils/sh/tests/parser/heredoc14.0
blob: 036be53dc0c97fe8e49e59fe00fa42379df2c15b (plain)
1
2
3
4
5
6
7
8
#
read x <<EOF; for i in "$x"
value
EOF
do
	x=$x.$i
done
[ "$x" = value.value ]