输入alias,啥也不显示
In my case, simply the .bashrc
loader lines were missing in .bash_profile
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
I added it manually and it worked with my fresh login
来源:https://askubuntu.com/a/768359