The Linux Command Line——12. Shell环境

The Linux Command Line——12. Shell环境

 

查看环境变量并把每个命令的输出通过管道传递给 less 来阅读:

The Linux Command Line——12. Shell环境

 

执行以上命令之后,我们应该能得到类似以下内容:

The Linux Command Line——12. Shell环境

 

printenv 命令也能够列出特定变量的数值:

The Linux Command Line——12. Shell环境

 

set也可以查看环境变量,同时还有shell变量、shell函数等。set的输出会按照首字母排列:

The Linux Command Line——12. Shell环境

 

也可以通过 echo 命令来查看一个变量的内容,像这样:

The Linux Command Line——12. Shell环境

 

别名无法通过使用 set 或 printenv 来查看。用不带参数的 alias 来查看别名:

The Linux Command Line——12. Shell环境

 

一些有趣的环境变量:

The Linux Command Line——12. Shell环境

 

The Linux Command Line——12. Shell环境

 

如何建立 shell 环境?

The Linux Command Line——12. Shell环境

 

在普通用户看来,文件 ∼/.bashrc 可能是最重要的启动文件,因为它几乎总是被读取。非登录 shell 默认会读取它,并且大多数登录 shell 的启动文件会以能读取 ∼/.bashrc 文件的方式来书写。

修改 shell 环境

按照通常的规则,添加目录到你的 PATH 变量或者是定义额外的环境变量,要把这些更改放置到.bash_profile 文件中(或者其替代文件中,根据不同的发行版。例如,Ubuntu 使用.profile文件)。对于其它的更改,要放到.bashrc 文件中。

创建文件.bashrc 的备份文件,这样做:

The Linux Command Line——12. Shell环境

 

现在我们有了一个备份文件,我们启动 nano 编辑器吧:

The Linux Command Line——12. Shell环境

 

 移动鼠标到文件的最后一行,然后添加以下几行到文件.bashrc 中:

The Linux Command Line——12. Shell环境

 

The Linux Command Line——12. Shell环境

 

输入 Ctrl-o 来保存我们修改的.bashrc 文件,输入 Ctrl-x 退出 nano。

激活我们的修改

The Linux Command Line——12. Shell环境

 

 试试其中一个新的别名

The Linux Command Line——12. Shell环境

上一篇:Ubuntu 16里的Java8环境配置


下一篇:linux(11)配置环境变量