Magellan Linux

Contents of /trunk/mkinitrd-magellan/busybox/shell/ash_test/ash-vars/var1.tests

Parent Directory Parent Directory | Revision Log Revision Log


Revision 816 - (show annotations) (download)
Fri Apr 24 18:33:46 2009 UTC (15 years, 1 month ago) by niro
File size: 228 byte(s)
-updated to busybox-1.13.4
1 # check that first assignment has proper effect on second one
2
3 (
4 a=a A=$a
5 echo a=$a A=$A
6 )
7 (a=a A=$a; echo a=$a A=$A)
8 (a=a A=$a echo a=$a A=$A)
9 (a=a A=$a /bin/echo a=$a A=$A)
10
11 f() { echo a=$a A=$A; }
12
13 (a=a A=$a f)
14 (a=a A=$a; f)