Re: PATH confusion in BASH

2004-03-16 Thread James Keasley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kent West <[EMAIL PROTECTED]> writes: > Ramiro Aceves wrote: > >> Kent West escribió: >> >>> [KDE not honoring system or user PATH statements] >>> >> I had same problem as yours, I found that in my Debian system PATH >> was set at /etc/gdm/gdm.conf >

Re: PATH confusion in BASH

2004-03-16 Thread Kent West
Ramiro Aceves wrote: Kent West escribió: [KDE not honoring system or user PATH statements] I had same problem as yours, I found that in my Debian system PATH was set at /etc/gdm/gdm.conf Hope this helps. Indeed. In /etc/kde3/kdm/kdmrc: # The PATH for the Session program. Default is # /bin:/

Re: PATH confusion in BASH

2004-03-16 Thread Kent West
Kent West wrote: Kent West wrote: According to "man bash", When bash is invoked as an interactive login shell, or as a non-inter- active shell with the --login option, it first reads and executes com- mands from the file /etc/profile, if that file exists. After reading

Re: PATH confusion in BASH

2004-03-16 Thread Kent West
Kent West wrote: According to "man bash", When bash is invoked as an interactive login shell, or as a non-inter- active shell with the --login option, it first reads and executes com- mands from the file /etc/profile, if that file exists. After reading that file, it lo

Re: PATH confusion in BASH

2004-03-16 Thread Kent West
Werner Mahr wrote: Am Sonntag, 14. März 2004 21:10 schrieb Kent West: statements in my ~/.bash_profile are these: # set PATH so it includes user's private bin if it exists if [ -d ~/bin ] ; then PATH=~/bin:"${PATH}" fi which does not have my ~/bin If you don't have this dir

Re: PATH confusion in BASH

2004-03-16 Thread Kent West
Rodrigo Agerri wrote: Kent West wrote: In /etc/profile are these statements (they're the only path-related statements in this file): PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games" export PATH I do not have a ~/.bash_login nor a ~/.profile. There are no path-related s

Re: PATH confusion in BASH

2004-03-15 Thread Rodrigo Agerri
Kent West wrote: > > In /etc/profile are these statements (they're the only path-related > statements in this file): > > >PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games" > >export PATH > > > I do not have a ~/.bash_login nor a ~/.profile. There are no > path-related statements in

Re: PATH confusion in BASH

2004-03-14 Thread Werner Mahr
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Sonntag, 14. März 2004 21:10 schrieb Kent West: > statements in my ~/.bash_profile are these: > > # set PATH so it includes user's private bin if it exists > > if [ -d ~/bin ] ; then > > PATH=~/bin:"${PATH}" > > fi > which does not have my ~/bi