ash: [PARSER] Recognise here-doc delimiters terminated by EOF
[oweals/busybox.git] / shell / hush_test / hush-read / read_REPLY.tests
1 echo '  \abc1  d\ef  ' | ( read         ; echo "test 1: |$REPLY|" )
2 echo '  \abc2  d\ef  ' | ( read -r      ; echo "test 2: |$REPLY|" )
3 echo '  \abc3  d\ef  ' | ( read    REPLY; echo "test 3: |$REPLY|" )
4 echo '  \abc4  d\ef  ' | ( read -r REPLY; echo "test 4: |$REPLY|" )
5 echo Done