xref: /freebsd/bin/sh/tests/builtins/read9.0 (revision b37f6c9805edb4b89f0a8c2b78f78a3dcfc0647b)
1# $FreeBSD$
2
3empty=''
4read a b c <<EOF
5\ \ A B\ \ B C\ \ $empty
6EOF
7read d e <<EOF
8D\ $empty
9EOF
10[ "$a.$b.$c.$d.$e" = "  A.B  B.C  .D ." ]
11