What is the difference between ~ . profile and ~ . bash_profile? The profile was the original profile configuration for the Bourne shell (a k a , sh) bash, being a Bourne compatible shell will read and use it The bash_profile on the other hand is only read by bash It is intended for commands that are incompatible with the standard Bourne shell
bash - What is the difference between ~ . profile, ~ . bashrc, ~ . bash . . . "profile" is a much less common suffix Define "scope" Most applications do not share configuration files with other non-related applications The one possible exception is etc profile and profile, which may be used by multiple different shells (including at least sh and bash)
What do the scripts in etc profile. d do? - Unix Linux Stack Exchange @AvindraGoolcharan Different distros may use different schemes for this kind of thing The profile d directory only works because its contents are sourced by etc profile, which is specified by shells such as bash as a startup file (see INVOCATION in man bash); if you edit etc profile, you can disable etc profile d
Setting PATH vs. exporting PATH in ~ . bash_profile [duplicate] Any of the ENV files first invoked by a shell such as bashrc or profile will set variable values for the life of that shell So any variables that are set and export ed within those files will maintain that export characteristic and be export ed to all child processes invoked by that shell for the life of the shell or until they are unset
What is the purpose of . bashrc and how does it work? Contrast bash_profile and profile which are only run at the start of a new login shell (bash -l) You choose whether a command goes in bashrc vs bash_profile depending on whether you want it to run once or for every interactive shell start
bash - Run script from . profile - Unix Linux Stack Exchange Stack Exchange Network Stack Exchange network consists of 183 Q A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers
bash - How to correctly add a path to PATH? - Unix Linux Stack Exchange The profile file is read by login shells, so it will only take effect the next time you log in (Some systems configure terminals to read a login shell; in that case you can start a new terminal window, but the setting will take effect only for programs started via a terminal, and how to set PATH for all programs depends on the system )