mirror of
https://git.busybox.net/busybox
synced 2026-02-15 22:16:09 +00: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")
|