View Single Post

   
  #2 (permalink)  
Old 02-20-2008, 07:27 AM
Laurenz Albe
 
Posts: n/a
Default Re: Path Environment Variable

Murphy <m@urphy.com> wrote:
> The MySQL manual states the following command should be issued:
>
> setenv PATH ${PATH}:/usr/local/mysql/bin


That is correct if and only if you (or MySQL) use it in a csh shell.
On other shells the following will work:

PATH=${PATH}:/usr/local/mysql/bin
export PATH

Yours,
Laurenz Albe
Reply With Quote