aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/source4.tests
blob: c1388835943de940eb586b9f0c1207de5ca18b6b (plain)
1
2
3
4
5
6
7
8
9
10
echo 'echo ${^}
echo line2' >sourced1
. ./sourced1
echo Ok1:$?

echo "echo '" >sourced1
. ./sourced1
echo Ok2:$?

rm sourced1