diff options
Diffstat (limited to 'shell/hush_test/hush-misc/env_and_func.tests')
-rwxr-xr-x | shell/hush_test/hush-misc/env_and_func.tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/env_and_func.tests b/shell/hush_test/hush-misc/env_and_func.tests new file mode 100755 index 000000000..1d4eaf3a7 --- /dev/null +++ b/shell/hush_test/hush-misc/env_and_func.tests @@ -0,0 +1,4 @@ +var=old +f() { echo "var=$var"; } +var=val f +echo "var=$var" |