NOT Working: /bin/bash: Psu: command not found
M-! cmd Psu
Working
M-! cmd ls
.bashrc
cat ~/.bashrc | grep Psu
cat ~/.bashrc | grep aliases
alias Psu='sudo pacman -Syyu'
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
.bash_profile
cat ~/.bash_profile | grep -A 2 bashrc
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
.bash_aliases
cat ~/.bash_aliases
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
I've read and followed: https://emacs.stackexchange.com/a/28999/21118
What am I missing?