7 lines
52 B
Bash
7 lines
52 B
Bash
if ls
|
|
then
|
|
echo hello
|
|
elif ls
|
|
then
|
|
echo world
|
|
fi
|