Lines Matching refs:world
144 print world
212 world
213 !) == world ]] || err_exit 'I/O not synchronized with <&'
292 hello world
293 EOF) == 'hello world' ]] || err_exit 'invalid readahead on stdin'
300 if ! $SHELL -c "sed -e 's/hello/hello world/' $tmp/1" >; $tmp/1 2> /dev/null
301 then [[ $(<$tmp/1) == 'hello world' ]] || err_exit '>; not updating file on success'
315 then [[ $(<$tmp/1) == world ]] || err_exit '<>; not truncating file on success of behead'
443 print 'hello world' > $file
465 print hello there world > $tmp/foobar
467 [[ $(<$tmp/foobar) == 'hello world' ]] || err_exit '>; redirection not working on simple command'
468 print hello there world > $tmp/foobar
470 [[ $(<$tmp/foobar) == $'hello world\ndone' ]] || err_exit '>; redirection not working for compound command'
471 print hello there world > $tmp/foobar
473 [[ $(<$tmp/foobar) == 'hello world' ]] || err_exit '>; redirection not working with -c on a simple command'