if流控制:
Shell中的条件判断语句,与其他编程语言类似。
如果需要知道有哪些条件判断方式,通过man test就可以得到帮助
常用格式
if 条件; then
语句
fi
if 条件; then
语句
else
语句
fi
if 条件; then
语句
elif 条件; then
语句
fi
if 条件; then
语句
elif 条件; then
语句
else
语句
fi
**************************************************************************************************
原文地址:http://329398.blog.51cto.com/319398/1654298