mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
3 lines
135 B
Text
Executable file
3 lines
135 B
Text
Executable file
echo 'test' | (read reply; echo "$reply")
|
|
echo 'test' | (read -n 3 reply; echo "$reply")
|
|
echo 'test' | (read -n3 reply; echo "$reply")
|