For example, this is my terminal after I entered 'ls':
The reason for this is that cmd cannot interpret the escape sequences for color and it is printing them as ASCII characters.
To fix this start adb shell normally and enter:
alias ls='ls --color=never'
It should then look like this:
Great tip Alex! It was what I was looking for.These characters almost get me crazy :-)
ReplyDeleteThanks again.