mirror of
https://git.busybox.net/busybox
synced 2025-05-13 14:14:01 +02:00
10 lines
126 B
Text
Executable file
10 lines
126 B
Text
Executable file
echo 'echo ${^}
|
|
echo line2' >sourced1
|
|
. ./sourced1
|
|
echo Ok1:$?
|
|
|
|
echo "echo '" >sourced1
|
|
. ./sourced1
|
|
echo Ok2:$?
|
|
|
|
rm sourced1
|