aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/tests/builtins/read9.0
blob: 080549889839aae62644c32594a43375bb2fd07a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# $FreeBSD$

empty=''
read a b c <<EOF
\ \ A B\ \ B C\ \ $empty
EOF
read d e <<EOF
D\ $empty
EOF
[ "$a.$b.$c.$d.$e" = "  A.B  B.C  .D ." ]