view .shell.d/00.path_manipulation.sh @ 46:8946e6ae2747

Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
author Augie Fackler <durin42@gmail.com>
date Mon, 09 Feb 2009 15:04:30 -0600
parents 62bfb554ab85
children de6d0a9a7e3f
line wrap: on
line source

# Functions for manipulating $PATH. Split out so I can use them in .zshenv if I want.

function insert_path_element() {
    if echo "$PATH" | grep "$1:" >> /dev/null; then
        true
    else
        export PATH="$1:$PATH"
    fi
}

function remove_path_element() {
    if echo "$PATH" | grep "$1:" >> /dev/null; then
        export PATH="`echo $PATH | sed s%$1:%%`"
    else
        echo $1 not in PATH
    fi
}