PATH是什么
寻找可执行文件的路径,如执行ls命令的时候,会到PATH下面的每个目录去寻找是否有ls命令,如果有,则执行
新增方式
/etc/profile文件作用
Login shell 时会执行的脚本,正常登陆linux,会先login shell,所以会执行/etc/profile,对应还有/etc/profile.d,这是目录,启动会执行这个目录下面的脚本
实现
- 在/etc/profile里面新增下面的一行,xxxx为具体的目录
export PATH=$PATH:xxxx
- 执行下面命令
source /etc/profile
参考:
1.https://www.cnblogs.com/liuzhenbo/p/12264273.html