11 lines
72 B
Bash
11 lines
72 B
Bash
if cat yolo ;
|
|
then
|
|
pwd
|
|
elif ls
|
|
then
|
|
pwd
|
|
elif pwd
|
|
then
|
|
ls
|
|
else ls
|
|
fi
|