红联Linux门户
Linux帮助

如何删除ubuntu中多余的PATH变量值

发布时间:2017-02-09 14:43:31来源:linux网站作者:delarce
之前使用过2个不同版本的ARM-Linux-GCC版本,一个是 3.4.5,另一个是4.4.3,所以会出现两个Gcc路径值:
root@wds:~# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/work/tools/gcc-3.4.5-glibc-2.3.6/bin:opt/FriendlyARM/toolschain/4.4.3/bin/
 
虽然显示当前使用的只有一个版本:
root@wds:~# arm-linux-gcc -v
Reading specs from /work/tools/gcc-3.4.5-glibc-2.3.6/lib/gcc/arm-linux/3.4.5/specs
Configured with: /work/tools/create_crosstools/crosstool-0.43/build/arm-linux/gcc-3.4.5-glibc-2.3.6/gcc-3.4.5/configure --target=arm-linux --host=i686-host_pc-linux-gnu --prefix=/work/tools/gcc-3.4.5-glibc-2.3.6 --with-float=soft --with-headers=/work/tools/gcc-3.4.5-glibc-2.3.6/arm-linux/include --with-local-prefix=/work/tools/gcc-3.4.5-glibc-2.3.6/arm-linux --disable-nls --enable-threads=posix --enable-symvers=gnu --enable-__cxa_atexit --enable-languages=c,c++ --enable-shared --enable-c99 --enable-long-long
Thread model: posix
gcc version 3.4.5
 
但是,还是想把另一个版本的删除掉,于是在下面的文件里查找到了有关4.4.3版本的PATH:
/etc/enviroment 以及~/.bahsrc
 
将4.4.3相关的路径删除后再重新启动一次就不再有这个路径了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/28283.html