|
Last change
on this file since 3510 was 3320, checked in by Bruno Cornec, 11 years ago |
- Re-add (thanks git BTW) the 2.2.9 branch which had been destroyed in
the move to 3.0
|
-
Property svn:executable
set to
*
|
|
File size:
228 bytes
|
| Rev | Line | |
|---|
| [3320] | 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)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.