Start 1.33.0 development cycle
[oweals/busybox.git] / shell / ash_test / ash-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")