f0688a48d2
Characters escaped with a backslash must be treated as if they were not in IFS. This includes stripping trailing IFS characters.
11 lines
139 B
Plaintext
11 lines
139 B
Plaintext
# $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 ." ]
|