Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/shell/hush_test/hush-vars/var_preserved.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (hide annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 186 byte(s)
-updated to busybox-1.13.4
1 niro 816 export a=b
2    
3     # external program
4     a=c /bin/true
5     env | grep ^a=
6    
7     # builtin
8     a=d true
9     env | grep ^a=
10    
11     # exec with redirection only
12     # in bash, this leaks!
13     a=e exec 1>&1
14     env | grep ^a=
15    
16     echo OK