mirror of
https://github.com/sheumann/hush.git
synced 2025-02-06 13:30:24 +00:00
11 lines
126 B
Plaintext
Executable File
11 lines
126 B
Plaintext
Executable File
echo 'echo ${^}
|
|
echo line2' >sourced1
|
|
. ./sourced1
|
|
echo Ok1:$?
|
|
|
|
echo "echo '" >sourced1
|
|
. ./sourced1
|
|
echo Ok2:$?
|
|
|
|
rm sourced1
|