ash: [PARSER] Recognise here-doc delimiters terminated by EOF
[oweals/busybox.git] / shell / hush_test / hush-read / read_n.tests
1 echo 'test' | (read reply; echo "$reply")
2 echo 'test' | (read -n 3 reply; echo "$reply")
3 echo 'test' | (read -n3 reply; echo "$reply")