busybox/shell/hush_test/hush-misc/env_and_func.tests

5 lines
59 B
Plaintext
Raw Normal View History

2009-04-20 16:22:31 +05:30
var=old
f() { echo "var=$var"; }
var=val f
echo "var=$var"