diff options
author | dim <dim@FreeBSD.org> | 2015-08-17 19:02:23 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-08-17 19:02:23 +0000 |
commit | 1b2342b5bac68ed5fb9fa605713427bcfc02f964 (patch) | |
tree | 1e4ed07070b081ea94eda0aedb432015098f448c /bin/sh/tests/builtins/read8.0 | |
parent | c1addfe0e15d5999b596bb58b758b424143bb484 (diff) | |
parent | a7ecfcac5413dc4d0d69986acfbe52a5e8ecb48f (diff) | |
download | FreeBSD-src-1b2342b5bac68ed5fb9fa605713427bcfc02f964.zip FreeBSD-src-1b2342b5bac68ed5fb9fa605713427bcfc02f964.tar.gz |
Merge ^/head r286697 through r286857.
Diffstat (limited to 'bin/sh/tests/builtins/read8.0')
-rw-r--r-- | bin/sh/tests/builtins/read8.0 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/sh/tests/builtins/read8.0 b/bin/sh/tests/builtins/read8.0 new file mode 100644 index 0000000..fb786ff --- /dev/null +++ b/bin/sh/tests/builtins/read8.0 @@ -0,0 +1,17 @@ +# $FreeBSD$ + +read a b c <<\EOF +\ +A\ + \ + \ + \ +B\ + \ + \ +C\ + \ + \ + \ +EOF +[ "$a.$b.$c" = "A.B.C" ] |