C-x,C-e edit in $EDITOR and execute C-r search backwards in history C-p/C-n browse history
Bash shells start in one of two modes:
this executes ~/.bash_profile
this executes ~/.bashrc
A remote login system like ssh uses bash_profile A non-interactive session like scp uses bashrc
My configuration has bashrc as a subset of bash_profile, using these lines in bash_profile:
# include .bashrc if it exists
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
The following 6 pages are in this category, out of 6 total.