Test the r190298 change.

This commit is contained in:
Stefan Farfeleder 2009-03-22 23:00:52 +00:00
parent 86d8da5d5b
commit acd5c42915
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=190300
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ echo "1 2 3" | { read a b c; echo "x${a}x${b}x${c}x"; }
echo "1 2 3" | { read a b c d; echo "x${a}x${b}x${c}x${d}x"; }
echo " 1 2 3 " | { read a b c; echo "x${a}x${b}x${c}x"; }
echo " 1 2 3 " | { unset IFS; read a b c; echo "x${a}x${b}x${c}x"; }
echo " 1 2 3 " | { IFS=$(printf ' \t\n') read a b c; echo "x${a}x${b}x${c}x"; }
echo " 1 2 3 " | { IFS= read a b; echo "x${a}x${b}x"; }

View File

@ -4,6 +4,7 @@ x1x2x3x
x1x2x3xx
x1x2x3x
x1x2x3x
x1x2x3x
x 1 2 3 xx
x1x2x3x
xx2x3x