周哥教IT.快速Web開發(fā)
不同的配置文件之間, 有可能存在調(diào)用關(guān)系, 比如/etc/bashrc中會調(diào)用/etc/profile.d/*.sh, 所以命令在配置文件中的書寫順序, 會影響配置文件的執(zhí)行效果
[root@demo-c8 ~]# vim /etc/bashrc
...
? ?for i in /etc/profile.d/*.sh; do ?# /etc/bashrc中, 調(diào)用/etc/profile.d/*/sh
? ? ? ?if [ -r "$i" ]; then
? ? ? ? ? ?if [ "$PS1" ]; then
? ? ? ? ? ? ? ?. "$i"
? ? ? ? ? ?else
? ? ? ? ? ? ? ?. "$i" >/dev/null
? ? ? ? ? ?fi
? ? ? ?fi
? ?done
...
標簽: