xref: /freebsd/bin/sh/tests/builtins/read9.0 (revision b077aed33b7b6aefca7b17ddb250cf521f938613)
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