xref
: /
freebsd
/
bin
/
sh
/
tests
/
parser
/
heredoc15.0
(revision 28f6c2f292806bf31230a959bc4b19d7081669a7)
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