Lines Matching refs:hello
75 hello world
77 [[ $REPLY = 'hello world' ]] || err_exit "read builtin failed"
83 hello \
86 [[ $REPLY = 'hello world' ]] || err_exit "read continuation failed"
88 hello worldxfoobar
90 [[ $REPLY = 'hello world' ]] || err_exit "read builtin failed"
92 hello \
96 [[ $REPLY == 'hello world' ]] || err_exit "read continuation2 failed"
125 print -f "hello%nbar\n" size > /dev/null
135 $SHELL -c 'read x <<< hello' 2> /dev/null || err_exit 'syntax <<< not recognized'
136 ($SHELL -c 'read x[1] <<< hello') 2> /dev/null || err_exit 'read x[1] not working'
268 print 'hello world'
315 if [[ $($SHELL < $tmp/script) != hello ]]
349 if [[ $($SHELL -c $'printf \'%2$s %1$s\n\' world hello') != 'hello world' ]]