The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 01-05-2009
Hangman2 Hangman2 is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 27
How do I define a particular dir in PATH variable and then unset that dir

How do I define a particular dir in front of PATH variable and then run some job and then at the end of job SET the PATH variable to original?

in a script, WILL something like this work:

ORIG_PATH=$PATH
export PATH=/dir1/dir2:$PATH

RUN SOME JOBS .....

unset PATH
EXPORT PATH=$ORIG_PATH

Also is there a way to not UNSET the path and look for particular dir and take it out from PATH variable??