Lines Matching full:export
35 x=export t=tagged H=hostname LZ5=026 RZ5=026 Z5=123 lR5=ABcdef R5=def n=l
84 if [[ $($SHELL -c 'echo $x') != export ]]
85 then err_exit export fails
88 then err_exit export attributes fails
96 then err_exit 'environment variables require re-export'
108 if [[ $(export | grep '^PATH=') != PATH=* ]]
109 then err_exit 'export not working'
155 if [[ $(export | grep ^foo=) != 'foo=bar' ]]
156 then err_exit 'all export not working'
162 if [[ $(export | grep ^foo=) != 'foo=bar' ]]
163 then err_exit 'all export not working with read'
219 export foo=hello
221 [[ $foo == hello ]] || err_exit 'export scoping problem in function'
224 [[ $(export | grep foo) == 'foo=hello' ]] || err_exit 'export not working in functions'
225 [[ $(export | grep bar) ]] && err_exit 'typeset -x not local'
325 $SHELL 2> /dev/null -c 'export foo=(bar=3)' && err_exit 'compound variables cannot be exported'
340 export TZ=$ETZ