mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Characters escaped with a backslash must be treated as if they were not in IFS. This includes stripping trailing IFS characters.
10 lines
139 B
Text
10 lines
139 B
Text
# $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 ." ]
|