shell脚本判断
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本判断相关的知识,希望对你有一定的参考价值。
条件判断
if格式:
if 条件;then
内容
elif 条件;then
内容
else
内容
fi
case格式:
case 变量引用 in
PAT1}
内容;;
PAT2)
内容;;
....
*)
内容;;
esac
shell配置文件读取顺序
交互式登录:/etc/profile-->/etc/profile.d/.sh-->~/.bash_profile-->~/.bashrc-->/etc/bashrc
非交互式登录:/etc/profile.d/.sh-->/etc/bashrc-->~/.bashrc
以上是关于shell脚本判断的主要内容,如果未能解决你的问题,请参考以下文章