diff options
Diffstat (limited to 'shell/hush_test/hush-bugs/export_exp.tests.disabled')
-rw-r--r-- | shell/hush_test/hush-bugs/export_exp.tests.disabled | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/shell/hush_test/hush-bugs/export_exp.tests.disabled b/shell/hush_test/hush-bugs/export_exp.tests.disabled new file mode 100644 index 000000000..0913fd3f2 --- /dev/null +++ b/shell/hush_test/hush-bugs/export_exp.tests.disabled @@ -0,0 +1,22 @@ +# This test shows a very special handling of export and local +# builtins by bash. + +v="a=aa0 b=bb0" +# only 1st arg should be expanded in multiple words +export $v c=$v +echo $a $b +echo $c + +# only 1st arg should be expanded in multiple words +export `echo a=aa1 b=bb1` c=`echo a=aa1 b=bb1` +echo $a $b +echo $c + +>zz=zz +>zzz=zzz +# only 1st arg should be globbed +export zzz* zz=* +env | grep ^zz | sort +rm -rf zz=zz zzz=zzz + +echo Done |