]> git.saurik.com Git - apple/shell_cmds.git/blob - sh/tests/builtins/read9.0
shell_cmds-216.60.1.tar.gz
[apple/shell_cmds.git] / sh / tests / builtins / read9.0
1 # $FreeBSD: head/bin/sh/tests/builtins/read9.0 287308 2015-08-30 17:24:22Z jilles $
2
3 empty=''
4 read a b c <<EOF
5 \ \ A B\ \ B C\ \ $empty
6 EOF
7 read d e <<EOF
8 D\ $empty
9 EOF
10 [ "$a.$b.$c.$d.$e" = " A.B B.C .D ." ]