42-archive/42sh/sample/if.sh
2017-02-06 19:48:17 +01:00

13 lines
93 B
Bash

while ls
do
if ls
then
echo hello
else
while ls
do
echo hello world
pwd
done
fi
done