android_mt6572_jiabo/external/busybox/shell/hush_test/hush-misc/source1.tests
2025-09-05 16:56:03 +08:00

10 lines
126 B
Text
Executable file

echo 'echo ${^}
echo line2' >sourced1
. ./sourced1
echo Ok1:$?
echo "echo '" >sourced1
. ./sourced1
echo Ok2:$?
rm sourced1