Lines Matching refs:hello
207 print ./b > ./a; print ./c > b; print ./d > c; print ./e > d; print "echo \"hello there\"" > e
210 if [[ $x != "hello there" ]]
214 if [[ $x != "hello there" ]]
223 x=$(print hello)
224 if [[ $x != hello ]]
230 /bin/echo hello
233 if [[ $x != $'\n'hello ]]
236 x=$( (/bin/echo hello) 2> /dev/null )
237 if [[ $x != hello ]]
353 then [[ $(cat <(print hello) ) == hello ]] || err_exit "process substitution not working outside for or while loop"
354 $SHELL -c '[[ $(for i in 1;do cat <(print hello);done ) == hello ]]' 2> /dev/null|| err_exit "process substitution not working in for or while loop"
371 $SHELL -c 'x=${ print hello;}; [[ $x == hello ]]' 2> /dev/null || err_exit '${ command;} not supported'
374 print hello
376 [[ $x == hello ]]
381 y=hello
382 print hello
388 print ${ print hello;} $(print world)
390 [[ $x == 'hello world' ]]
393 x=${ { print -n } ; print -n hello ; } ; print ' world' }
394 [[ $x == '}hello world' ]]
433 do print hello