shell 类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell 类型相关的知识,希望对你有一定的参考价值。

站在用户登录的角度来说,shell分为两类:

        登陆式shell:     正常通过某终端登录,su -username  (完全登陆)

        非登陆式shell:   su username


bash 的配置文件:

        全局配置: etc/profile    etc/profile.d/*.sh    etc/bashrc

        个人:    ~/.bash_prefile     ~/.bashrc


以上五个文件,可以分为两类:

        profile类: 设定环境变量,运行命令或脚本

        bash类: 设定本地变量,定义变量别名


当bash进程执行时,首先会读取全局的配置即:profile类,然后才会读取个人的配置.

  1. 登录式shell : /etc/profile -> /etc/profile.d/*sh -> ~/.bash_profile -> etc/bashrc -> ~/.bashrc

  2. 非登录式shell: ~/.bashrc ->/etc/bashrc ->etc/profile.d/*sh



以上是关于shell 类型的主要内容,如果未能解决你的问题,请参考以下文章

linux12shell编程 -- >基本数据类型

shell 中的 特殊变量类型数组

shell类型

shell编程系列4--有类型变量:字符串只读类型整数数组

shell下如何实现数据类型的转换

shell编程学习