xref
: /
freebsd
/
bin
/
sh
/
tests
/
parser
/
heredoc15.0
(revision d198b8774d2cfb6f140893e1c6236af9e97d1497)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
2
set -- dummy
3
read x <<EOF; for i
4
value
5
EOF
6
do
7
x=$x.$i
8
done
9
[ "$x" =
value.dummy
]
10