Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-30-2003, 03:48 PM
|
#1
|
Member
Registered: Feb 2002
Posts: 586
Rep:
|
bashrc vs. bash_profile
These two files looks pretty similar. What is the purpose of these files ?
Thanks
|
|
|
08-30-2003, 04:01 PM
|
#2
|
Senior Member
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185
Rep:
|
things like:
PATHS
custom PS1 strings
aliases
....etc,are stored in these files...
|
|
|
08-30-2003, 04:08 PM
|
#3
|
Senior Member
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104
Rep:
|
One important distinction is that bash_profile is read when you loggin whereas bashrc is read each time you open a bash shell after youve logged in.
|
|
|
08-30-2003, 04:11 PM
|
#4
|
Member
Registered: Aug 2003
Location: Suprisingly in Heaven
Posts: 223
Rep:
|
When you start a login shell, bash consults the following files in the specified order:
1. /etc/profile
2. ~/.bash.profile
3. ~/.bash_login
4. ~/.profile
When you start a nonlogin shell, bash consults only one startup file, ~/bash.rc.
|
|
|
09-24-2003, 07:45 AM
|
#5
|
Member
Registered: Feb 2002
Posts: 586
Original Poster
Rep:
|
Quote:
Originally posted by SaTaN
When you start a login shell, bash consults the following files in the specified order:
1. /etc/profile
2. ~/.bash.profile
3. ~/.bash_login
4. ~/.profile
When you start a nonlogin shell, bash consults only one startup file, ~/bash.rc.
|
What do you mean by "nonlogin shell"? When OS starts?
|
|
|
09-24-2003, 04:43 PM
|
#6
|
Senior Member
Registered: Jun 2003
Distribution: Debian/other
Posts: 2,104
Rep:
|
Just think of a non-login shell as when you open a new instance of bash up after youve logged in - each time you do this the ~/.bashrc file is read - this file is good for putting Aliases in amongst other things.
|
|
|
09-27-2003, 07:27 PM
|
#7
|
LQ Newbie
Registered: Sep 2003
Location: where rainbow begins
Distribution: RH Psyche
Posts: 7
Rep:
|
is there any command that can be use for restarting the .bash_profile, so don;t have to restart the whole pc?
i mean, like in windows, you can restart the 'explorer' only if you made changes in registry....
TIA.
|
|
|
09-27-2003, 11:43 PM
|
#8
|
Member
Registered: Aug 2003
Location: Suprisingly in Heaven
Posts: 223
Rep:
|
On the command line:-
. .bash_profile
|
|
|
10-04-2003, 08:20 PM
|
#9
|
Member
Registered: Feb 2002
Posts: 586
Original Poster
Rep:
|
What .(dot) before .bash_profile does?
|
|
|
02-10-2008, 01:46 PM
|
#10
|
LQ Newbie
Registered: Oct 2006
Posts: 14
Rep:
|
Quote:
Originally Posted by mikeshn
What .(dot) before .bash_profile does?
|
It's been a long time, but for completeness:
If you run it like:
$ .bash_profile
it creates a new process to run the file. Any aliases created will be valid only for that process. When the file is finished running, that process ends, and the new aliases expire.
If you run it like:
$ . .bash_profile
it runs it in the current process. When the file is finished executing, the new aliases are still valid.
See $man . OR $man source
|
|
|
All times are GMT -5. The time now is 10:39 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|