Re: .bash_profile never read in X

1999-07-03 Thread Daniel Barclay
From: [EMAIL PROTECTED] (Carl Fink) One thing that has bugged me ever since I switched to gdm: my .bashrc and .bash_profile files are never read. Isn't one problem that when one starts the X server using startx, applications (e.g., xterm) are not started with the same environment that

Re: .bash_profile never read in X

1999-06-30 Thread Carl Fink
[This message has also been posted.] Okay, people pointed out to me that .bash_profile isn't *supposed* to execute in an xterm unless a special flag is used. Fine. On further investigation, .bashrc *is* executing. And I get this output: /home/carlf$ echo $PATH

Re: .bash_profile never read in X

1999-06-30 Thread Paul D. Smith
%% [EMAIL PROTECTED] (Carl Fink) writes: cf On further investigation, .bashrc *is* executing. And I get this cf output: cf /home/carlf$ echo $PATH cf (/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games:/home/carlf/bin) cf . . . so why won't the xterm execute files in

Re: .bash_profile never read in X

1999-06-30 Thread Carl Fink
Paul D. Smith wrote: If that's really the exact output you get, the answer is obvious; you don't have ``/home/carlf/bin'' on your PATH. You do, however, have ``/home/carlf/bin)'' on your path, a directory which, I assume, doesn't exist. Hint: this is Bourne shell, not C shell; you never

.bash_profile never read in X

1999-06-29 Thread Carl Fink
[This message has also been posted.] I have a system that was installed from a Debian 2.0 CD-ROM, with many packages upgraded to 2.1 or unstable via the web site. One thing that has bugged me ever since I switched to gdm: my .bashrc and .bash_profile files are never read. Now, I realize that

RE: .bash_profile never read in X

1999-06-29 Thread Sean 'Shaleh' Perry
On 29-Jun-99 Carl Fink wrote: [This message has also been posted.] I have a system that was installed from a Debian 2.0 CD-ROM, with many packages upgraded to 2.1 or unstable via the web site. One thing that has bugged me ever since I switched to gdm: my .bashrc and .bash_profile files

Re: .bash_profile never read in X

1999-06-29 Thread Gregory T. Norris
Actually, ~/.bashrc is used only for interactive, non-login shells. If the xterm is invoked with the -ls option, it won't be used (unless it's explicitly sourced within ~/.bash_profile, of course). On Mon, Jun 28, 1999 at 08:16:18PM -0700, Sean 'Shaleh' Perry wrote: On 29-Jun-99 Carl Fink