9 lines
70 B
Bash
9 lines
70 B
Bash
if [ 0 -gt 1 ]
|
|
then
|
|
echo hello
|
|
if ls
|
|
then
|
|
echo world
|
|
|
|
echo yolo
|
|
fi
|