What's the difference between /etc/bash.bashrc and ~/.bashrc? Which one should I use?

21,323

Solution 1

/etc/bash.bashrc applies to all users

~/.bashrc only applies to the user in which home folder it is.

Solution 2

According to the GNU Bash Documentation:

When Bash is invoked as an interactive login shell, or as a non-interactive shell with the --login option, it first reads and executes commands from the file /etc/profile, if that file exists. After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile, in that order, and reads and executes commands from the first one that exists and is readable. The --noprofile option may be used when the shell is started to inhibit this behavior.

Invoked as an interactive non-login shell When an interactive shell that is not a login shell is started, Bash reads and executes commands from ~/.bashrc, if that file exists. This may be inhibited by using the --norc option. The --rcfile file option will force Bash to read and execute commands from file instead of ~/.bashrc.

So, typically, your ~/.bash_profile contains the line

if [ -f ~/.bashrc ]; then . ~/.bashrc; fi

after (or before) any login-specific initializations.

Solution 3

For your personal preferences and personal scripts or bash functions you should use .bashrc ( aliases, Added functions to bash ... )

The moment that you want to share something with all users ( or most of users ) or for things of general use ( Path for shared executables , path for documentation ...) put it in /etc/bash.bashrc

I said most of users because even let's say you specify a script greetings.sh which prints "Hello world!" for all users, but user Pepe want to use instead the script greetings.sh which prints "Hola el mundo!". He can modify his path in his .bashrc to point to his script instead of yours. In other word the user can always customize his session in .bashrc to what ever he wants.

Share:
21,323
cfischer
Author by

cfischer

Updated on September 17, 2022

Comments

  • cfischer
    cfischer over 1 year

    When should I use each of the two .bashrc files to set my aliases, prompt, etc?

  • dacracot
    dacracot over 14 years
    And implied in dex's answer is... Use your local ~/.bashrc in all cases except where you want to enforce your will on everyone who uses that machine.
  • Kim
    Kim over 14 years
    Strictly speaking, you're not enforcing anything in /etc/bash.bashrc because users can always change it in their own ~/.bashrc
  • user1686
    user1686 over 14 years
    ...except for when someone decides to make all variables readonly in /etc/bash.bashrc :\
  • jfmessier
    jfmessier over 14 years
    Under Ubuntu, this file, as commented at the beginning, has to be "sourced" from the /etc/profile file. I added an alias command at the end of the /etc/bash.bashrc, and appended the command "source /etc/bash.bashrc" at the end of the /etc/profile file. Works like a charm.
  • mloskot
    mloskot almost 12 years
    Not really. Look at this file git.savannah.gnu.org/cgit/bash.git/tree/shell.c, in run_startup_files() function where SYS_BASHRC is used, defined in git.savannah.gnu.org/cgit/bash.git/tree/config-top.h
  • Chris Tollefson
    Chris Tollefson over 3 years
    /etc/bash.bashrc might be missing from the official documentation because /* #define SYS_BASHRC... is commented-out in the original source code, even though some distros use it (e.g. Debian).