共计 1209 个字符,预计需要花费 4 分钟才能阅读完成。
本文由 LinuxProbe.Com 团队成员 逄增宝 整理发布,原文来自:运维生存空间。
导读 | 使用终端 ssh 登录 Linux 操作系统的控制台后,会出现一个提示符号(例如:# 或~),在这个提示符号之后可以输入命令,Linux 根据输入的命令会做回应,这一连串的动作是由一个所谓的 Shell 来做处理。Shell 是一个程序,最常用的就是 Bash,这也是登录系统默认会使用的 Shell。 |
• 对于个别用户的启动配置文件
用户 HOME(家)目录 /.bashrc
head -1 ~/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
用户 HOME(家)目录 /.profile
head -1 ~/.profile
# ~/.profile: executed by Bourne-compatible login shells.
• 对于全部用户的启动配置文件
head -1 /etc/bash.bashrc
# System-wide .bashrc file for interactive bash(1) shells.
head -2 /etc/profile
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
• bashrc 和 profile 的差异
从上面的英文描述可以知道,bashrc 和 profile 的差异在于:1. bashrc 是在系统启动后就会自动运行。2. profile 是在用户登录后才会运行。3. 进行设置后,可运用 source bashrc 命令更新 bashrc,也可运用 source profile 命令更新 profile。PS:通常我们修改 bashrc, 有些 linux 的发行版本不一定有 profile 这个文件,本文用的系统是 Ubuntu 15.10
4. /etc/profile 中设定的变量 (全局) 的可以作用于任何用户,而~/.bashrc 等中设定的变量 (局部) 只能继承 /etc/profile 中的变量,他们是 "父子" 关系。
• 补充介绍
另外,需要补充说明介绍 bashrc 相关的几个文件:
~/.bash_profile: 每个用户都可使用该文件输入专用于自己使用的 shell 信息,当用户登录时,该文件仅仅执行一次! 默认情况下, 他设置一些环境变量, 执行用户的.bashrc 文件。
~/.bash_logout: 当每次退出系统 (退出 bash shell) 时,执行该文件。
~/.bash_profile 是交互式、login 方式进入 bash 运行的,~/.bashrc 是交互式 non-login 方式进入 bash 运行的,通常二者设置大致相同,所以通常前者会调用后者。
正文完
星哥玩云-微信公众号