Skip to main content

ls in ubuntu emacs


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

Comments

Popular posts from this blog