Remove a path from your PATH variable
on April 15, 2008
If you need to remove a path from the PATH variable before your script runs add this to the beginning of the script:
PATH=$(echo $PATH | sed -e 's;:\?/home/user/bin;;' -e 's;/home/user/bin:\?;;')
If you need, you can re-add it at the front of the list with:
PATH=/home/user/bin:$PATHOr you can re-add it at the end of the list with:
PATH=$PATH:/home/user/bin_______________________________
Related Articles
- Shell Functions and Path Variables by Stephen Collyer
- Distributed Compiling with distcc by Jes Hall
- Configuring Bash by David Blackman