Common structural shell script function

if-then

if command 
then
    command
fi

if-then-else

if command 
then 
    command
else 
    command 
fi

Nested if

if command
then
    command 
elif command
then
    command
elif command
then
    command
else
    command
fi

Guess you like

Origin www.cnblogs.com/7haoyu/p/11568837.html