9 lines
124 B
Plaintext
Executable File
9 lines
124 B
Plaintext
Executable File
if true; then
|
|
echo "THEN"
|
|
elif echo "ELIF false"; false; then
|
|
echo "ELIF THEN"
|
|
else
|
|
echo "ELSE"
|
|
fi
|
|
echo "Ok:$?"
|