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