Fedora 29: not reading changes in .bash_profile












0

















I have added some aliases and functions to the .bash_profile but they are not available when I start a new Command Line Prompt. Neither they are available after a reboot.
I need to execute a 'source ~/.bash_profile' each time.
So, I have added into the .bashrc file the following:



if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#Added source
source ~/.bash_profile


However now when I try to open a new shell, the window just pops up for a second and then closes. Any idea how to apply changes in .bash_profile immediately?
Thanks










share|improve this question


















  • 5





    Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

    – Kusalananda
    Feb 14 at 11:11






  • 4





    .bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

    – PRY
    Feb 14 at 11:14











  • Thanks, that makes sense

    – Francesco Marchioni
    Feb 14 at 11:39






  • 4





    Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

    – Kusalananda
    Feb 14 at 11:50






  • 1





    There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

    – Kusalananda
    Feb 14 at 22:59
















0

















I have added some aliases and functions to the .bash_profile but they are not available when I start a new Command Line Prompt. Neither they are available after a reboot.
I need to execute a 'source ~/.bash_profile' each time.
So, I have added into the .bashrc file the following:



if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#Added source
source ~/.bash_profile


However now when I try to open a new shell, the window just pops up for a second and then closes. Any idea how to apply changes in .bash_profile immediately?
Thanks










share|improve this question


















  • 5





    Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

    – Kusalananda
    Feb 14 at 11:11






  • 4





    .bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

    – PRY
    Feb 14 at 11:14











  • Thanks, that makes sense

    – Francesco Marchioni
    Feb 14 at 11:39






  • 4





    Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

    – Kusalananda
    Feb 14 at 11:50






  • 1





    There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

    – Kusalananda
    Feb 14 at 22:59














0












0








0










I have added some aliases and functions to the .bash_profile but they are not available when I start a new Command Line Prompt. Neither they are available after a reboot.
I need to execute a 'source ~/.bash_profile' each time.
So, I have added into the .bashrc file the following:



if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#Added source
source ~/.bash_profile


However now when I try to open a new shell, the window just pops up for a second and then closes. Any idea how to apply changes in .bash_profile immediately?
Thanks










share|improve this question
















I have added some aliases and functions to the .bash_profile but they are not available when I start a new Command Line Prompt. Neither they are available after a reboot.
I need to execute a 'source ~/.bash_profile' each time.
So, I have added into the .bashrc file the following:



if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
#Added source
source ~/.bash_profile


However now when I try to open a new shell, the window just pops up for a second and then closes. Any idea how to apply changes in .bash_profile immediately?
Thanks







shell fedora bash-profile






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 14 at 11:06









Francesco MarchioniFrancesco Marchioni

1204




1204








  • 5





    Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

    – Kusalananda
    Feb 14 at 11:11






  • 4





    .bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

    – PRY
    Feb 14 at 11:14











  • Thanks, that makes sense

    – Francesco Marchioni
    Feb 14 at 11:39






  • 4





    Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

    – Kusalananda
    Feb 14 at 11:50






  • 1





    There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

    – Kusalananda
    Feb 14 at 22:59














  • 5





    Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

    – Kusalananda
    Feb 14 at 11:11






  • 4





    .bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

    – PRY
    Feb 14 at 11:14











  • Thanks, that makes sense

    – Francesco Marchioni
    Feb 14 at 11:39






  • 4





    Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

    – Kusalananda
    Feb 14 at 11:50






  • 1





    There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

    – Kusalananda
    Feb 14 at 22:59








5




5





Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

– Kusalananda
Feb 14 at 11:11





Why don't you add your aliases to .bashrc? That's the file that is sourced for interactive shells after all.

– Kusalananda
Feb 14 at 11:11




4




4





.bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

– PRY
Feb 14 at 11:14





.bash_profile is meant to be executed while opening bash in interactive login-shell, not while opening terminal. You should make changes in .bashrc.

– PRY
Feb 14 at 11:14













Thanks, that makes sense

– Francesco Marchioni
Feb 14 at 11:39





Thanks, that makes sense

– Francesco Marchioni
Feb 14 at 11:39




4




4





Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

– Kusalananda
Feb 14 at 11:50





Related (possibly a duplicate): What is the purpose of .bashrc and how does it work?

– Kusalananda
Feb 14 at 11:50




1




1





There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

– Kusalananda
Feb 14 at 22:59





There seems to possibly be another issue here as well. You say that the terminal closes immediately? Is your .bash_profile sourcing .bashrc (creating a loop). In that case, just delete the sourcing that you added yourself in .bashrc.

– Kusalananda
Feb 14 at 22:59










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500597%2ffedora-29-not-reading-changes-in-bash-profile%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f500597%2ffedora-29-not-reading-changes-in-bash-profile%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?