My prompt is such:
PS1="\[\033[32m\]\u@myserver\n\[\033[33m\w$\033[0m\] "
So as output after I ls i see this:
jake@myserver
~/public_html$
~/public_html$
When I should only (I think) see:
jake@myserver
~/public_html$
The color commands work (beautifully) but this duplicate line thing is driving me nuts. I adapted this command prompt from the one that comes with MySysGit for windows.
Why is this happening?
If I just hit enter at the prompt, it prints correctly, without the duplicate second line. The duplication only happens after ls, cd or maybe some other bash commands.