Lines Matching refs:hello
34 alias foo='print hello'
35 if [[ $(foo) != hello ]]
36 then err_exit 'foo, where foo is alias for "print hello" failed'
38 if [[ $(foo world) != 'hello world' ]]
39 then err_exit 'foo world, where foo is alias for "print hello" failed'
41 alias foo='print hello '
43 if [[ $(foo bar) != 'hello world' ]]
44 then err_exit 'foo bar, where foo is alias for "print hello " failed'
46 if [[ $(foo \bar) != 'hello bar' ]]
47 then err_exit 'foo \bar, where foo is alias for "print hello " failed'
50 if [[ $(bar) != 'hello world' ]]
65 alias bar='print hello'
70 if [[ $(!! hello 2>/dev/null) != hello ]]