当前位置: 技术问答>linux和unix
如何删除PATH路径下的目录
来源: 互联网 发布时间:2017-03-14
本文导语: # echo $PATH /usr/kerberos/sbin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/real/RealPlayer:/home/chensheng/bin:/opt/Gamit_Globk/com/:/opt/Gamit_Globk/gamit/bin:/opt/Gamit_Globk/kf/bin:/opt/real/RealPlayer:/opt/real/RealPla...
# echo $PATH
/usr/kerberos/sbin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/real/RealPlayer:/home/chensheng/bin:/opt/Gamit_Globk/com/:/opt/Gamit_Globk/gamit/bin:/opt/Gamit_Globk/kf/bin:/opt/real/RealPlayer:/opt/real/RealPlayer:/opt/Gamit_Globk/com:/opt/Gamit_Globk/gamit/bin:/opt/Gamit_Globk/kf/bin:/root/cheng
我有几个路径目录重复了,想删除一个不知到怎么改,只会添加!
/usr/kerberos/sbin:/usr/lib/qt-3.3/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/real/RealPlayer:/home/chensheng/bin:/opt/Gamit_Globk/com/:/opt/Gamit_Globk/gamit/bin:/opt/Gamit_Globk/kf/bin:/opt/real/RealPlayer:/opt/real/RealPlayer:/opt/Gamit_Globk/com:/opt/Gamit_Globk/gamit/bin:/opt/Gamit_Globk/kf/bin:/root/cheng
我有几个路径目录重复了,想删除一个不知到怎么改,只会添加!
|
|
export PATH=$(echo $PATH | tr : "n"| sort | uniq | tr "n" :)