diff options
Diffstat (limited to 'shell/ash_test/ash-read/read_r.tests')
-rwxr-xr-x | shell/ash_test/ash-read/read_r.tests | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shell/ash_test/ash-read/read_r.tests b/shell/ash_test/ash-read/read_r.tests index 2c4cc6106..1f0a18afc 100755 --- a/shell/ash_test/ash-read/read_r.tests +++ b/shell/ash_test/ash-read/read_r.tests | |||
@@ -1,2 +1,4 @@ | |||
1 | echo -e 'test\\\nbest' | (read reply; echo "$reply") | 1 | echo 'test\ |
2 | echo -e 'test\\\nbest' | (read -r reply; echo "$reply") | 2 | best' | (read reply; echo "$reply") |
3 | echo 'test\ | ||
4 | best' | (read -r reply; echo "$reply") | ||