nt9856x/BSP/busybox/shell/hush_test/hush-misc/source4.tests
2023-03-28 15:07:53 +08:00

11 lines
126 B
Plaintext
Executable File

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