Emacs shell mode can be executed using (M-x shell).bash> alias ls
When doing a listing using 'ls', the control characters mixed in with the listing.
The solution is to unalias ls
alias ls='ls --color=auto'
bash> unalias ls
bash> ls
Random Notes
Emacs shell mode can be executed using (M-x shell).bash> alias ls
When doing a listing using 'ls', the control characters mixed in with the listing.
The solution is to unalias ls
Comments