From cc0056db5c82b7965c019599f59f8f1d9e8d52fd Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 1 Oct 2016 17:30:21 +0200 Subject: ash testsuite: remove two inadvertent bashisms Signed-off-by: Denys Vlasenko --- shell/ash_test/ash-read/read_r.tests | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'shell/ash_test/ash-read') 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 @@ -echo -e 'test\\\nbest' | (read reply; echo "$reply") -echo -e 'test\\\nbest' | (read -r reply; echo "$reply") +echo 'test\ +best' | (read reply; echo "$reply") +echo 'test\ +best' | (read -r reply; echo "$reply") -- cgit v1.2.3