Mercurial > dotfiles
view .zsh/00.path_manipulation.zsh @ 13:c22ca1514f3b
Add an alias to ease working with mq repos.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 03 Dec 2008 22:55:45 -0600 |
parents | c30d68fbd368 |
children | cb2b2943221d |
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 echo $1 already in path 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 }