[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: profile



As follows from Bash manpage it will read and execute /etc/profile, and the _first_ readable file from the list (it will try them in listed order) ~/.bash_profile, ~/.bash_login and ~/.profile, not all of these files. As one of them is read and executed, others will not be tried. For non-interactive or non-login shells the list of profile files may be different (depending on options given to bash when it is started).
It should be also noted that the profile files can themselves reference and execute other profiles, such as profiles in /etc/profile.d or ~/.bashrc.


Alexey Fadyushin
Brainbenvh MVP for Linux.
http://www.brainbench.com

Michael Velez wrote:



-----Original Message-----
From: redhat-list-bounces redhat com [mailto:redhat-list-bounces redhat com] On Behalf Of Muhammad Rizwan
Sent: Friday, May 27, 2005 5:12 AM
To: General Red Hat Linux discussion list
Subject: profile



Hello

When Linux starts, which profile it loads.

Any idea?

Thanks!

--
redhat-list mailing list
unsubscribe mailto:redhat-list-request redhat com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/redhat-list



Profiles read are dependent upon the shell you execute, whether the shell is
a login shell or interactive.

The man page for each shell should have what you need. If you're running
the bash shell, type:


man bash

and search for the INVOCATION section

For an interactive bash login shell (therefore what you start when you log
in), profiles are read in the following order:

/etc/profile
~/.bash_profile  (which should call up ~/.bashrc)
~/.bash_login
~/.profile

if the files exist.

Hope this helps,
Michael







[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]