Lines Matching refs:hello
37 hello world
39 if [[ $(<$f) != 'hello world' ]]
40 then err_exit "'hello world' here doc not working"
43 hello world
45 cmp $f $g 2> /dev/null || err_exit "'hello world' quoted here doc not working"
47 hello world
49 cmp $f $g 2> /dev/null || err_exit "'hello world' tabbed here doc not working"
51 hello world
53 cmp $f $g 2> /dev/null || err_exit "'hello world' quoted tabbed here doc not working"
54 x=hello
60 $(print hello) world
62 cmp $f $g 2> /dev/null || err_exit "'$(print hello) world' here doc not working"
67 then err_exit "'hello world' here doc not working"
89 hello
93 if [[ $x != hello ]]
135 if x=$($SHELL -c 'cat <<< "hello world"' 2> /dev/null)
136 then [[ $x == 'hello world' ]] || err_exit '<<< documents not working'
137 x=$($SHELL -c 'v="hello world";cat <<< $v' 2> /dev/null)
138 [[ $x == 'hello world' ]] || err_exit '<<< documents with $x not working'
139 x=$($SHELL -c 'v="hello world";cat <<< "$v"' 2> /dev/null)
140 [[ $x == 'hello world' ]] || err_exit '<<< documents with $x not working'
213 [[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for quoted here documents"
215 [[ $($SHELL "$f") == $'hello\n\tworld' ]] || err_exit "<<# not working for non-quoted here documents"
241 print hello
247 [[ $($SHELL $script) == hello ]] 2> /dev/null || err_exit 'heredoc embeded in command substitution fails at buffer boundary'