busybox/shell/hush_test/hush-read/read_r.tests
Denys Vlasenko 5d6b8729ed hush testsuite: add many tests from ash testsuite
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2016-10-02 17:39:31 +02:00

5 lines
99 B
Plaintext
Executable File

echo 'test\
best' | (read reply; echo "$reply")
echo 'test\
best' | (read -r reply; echo "$reply")