标签:.sh 配置文件 非交互式 else 顺序 格式 .bashrc case shell脚本
条件判断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
标签:.sh 配置文件 非交互式 else 顺序 格式 .bashrc case shell脚本
原文地址:http://blog.51cto.com/14133915/2338024