summaryrefslogtreecommitdiffstats
path: root/shell_cmds/sh/tests/builtins/read9.0
blob: 16f06876b192266c5d740912861faff374e90634 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# $FreeBSD: head/bin/sh/tests/builtins/read9.0 287308 2015-08-30 17:24:22Z jilles $

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 ." ]