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