The .bashrc isn't sourced when I log in using SSH: Difference between revisions

From LWP-Wiki
Jump to navigation Jump to search
(Created page with "Category:remotexs-faq No, but ~/.bash_profile ''is'', so you can make that read: if [ -f ~/.bashrc ]; then . ~/.bashrc fi")
 
(No difference)

Latest revision as of 17:52, 10 February 2015

No, but ~/.bash_profile is, so you can make that read:

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