码迷,mamicode.com
首页 > 其他好文 > 详细

pathmunge /etc/profile

时间:2014-10-23 01:21:29      阅读:775      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   log   bs   as   file   

pathmunge () {
    case ":${PATH}:" in
        *:"$1":*)
            ;;
        *)
            if [ "$2" = "after" ] ; then
                PATH=$PATH:$1
            else
                PATH=$1:$PATH
            fi
    esac
}

把参数添加进去环境变量,如果已经存在则不添加

pathmunge () {
        if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
           if [ "$2" = "after" ] ; then
              PATH=$PATH:$1
           else
              PATH=$1:$PATH
           fi
        fi
}

这个函数不知道是什么时候的版本的,不过新版本的函数效率更高

 

 

#我的环境变量是/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/test/bin
pathmunge () {
    case ":${PATH}:" in
        :/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/test/bin:)
            echo "就是在环境变量前后添加:";;
        #不是正则表达式 任意字符:参数1:任意字符
        *:"$1":*)
            echo "true";;
        *)
            if [ "$2" = "after" ] ; then
                PATH=$PATH:$1
            else
                PATH=$1:$PATH
            fi
    esac
}

pathmunge

 

pathmunge /etc/profile

标签:style   blog   color   sp   div   log   bs   as   file   

原文地址:http://www.cnblogs.com/ghgyj/p/4044758.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!