- PATH 文件查找的路径
- LIBRARY_PATH 静态库
- LD_LIBRARY_PATH 动态库查找的路径
$ env
系统环境变量
/etc/environment
/etc/bash.bashrc
/etc/profile
用户环境变量
~/.bashrc
~/.profile # 如果有 ~/.bash_profile 或 ~/.bash_login 就不会读此文件
~/.bash_profile
~/.bash_login
命令级环境变量
$ export MSG="Hello, World!"
$ unset MSG