Linux操作系统改动PATH的方法

1. 暂时改动:

使用export。比如#export PATH=$PATH:/etc/apache/bin

2. 针对用户的改动:

vi ~/.bash_profile

增加:export PATH=$PATH:/etc/apache/bin

然后source ~/.bash_profile

3. 全局改动(root权限):

vi /etc/profile文件,

增加:export PATH=$PATH:/etc/apache/bin

然后source /etc/profile

上一篇:sql取年月日


下一篇:《Programming WPF》翻译 第9章 4.模板