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

5 lines
59 B
Plaintext
Raw Normal View History

2009-04-20 10:52:31 +00:00
var=old
f() { echo "var=$var"; }
var=val f
echo "var=$var"