diff options
Diffstat (limited to 'shell/hush_test/hush-misc/source4.tests')
-rwxr-xr-x | shell/hush_test/hush-misc/source4.tests | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/source4.tests b/shell/hush_test/hush-misc/source4.tests new file mode 100755 index 000000000..c13888359 --- /dev/null +++ b/shell/hush_test/hush-misc/source4.tests @@ -0,0 +1,10 @@ +echo 'echo ${^} +echo line2' >sourced1 +. ./sourced1 +echo Ok1:$? + +echo "echo '" >sourced1 +. ./sourced1 +echo Ok2:$? + +rm sourced1 |