ash: add read -u; fix read -t and read -n; add testsuite entries.

This commit is contained in:
Denis Vlasenko
2008-03-25 00:07:12 +00:00
parent f39653e306
commit 59f351ccda
7 changed files with 91 additions and 55 deletions

View File

@@ -0,0 +1,3 @@
echo 'test' | (read reply; echo "$reply")
echo 'test' | (read -n 3 reply; echo "$reply")
echo 'test' | (read -n3 reply; echo "$reply")