vote up 3 vote down star

I am using bash in os X Terminal app, and my custom $PS1 breaks when I scroll through my history.

PS1="${BLUE}\u${CYAN}@${RED}\h${BLUE}\w\n\[${red}\$${NC}\]"

also tried PS1="${BLUE}\u${CYAN}@${RED}\h${BLUE}\w\r\n[${red}\$${NC}]"

The problem seems to be in the newline. I have used this bash prompt on Slackware no prob.

flag

63% accept rate
default mac bash or macports bash? – kch Sep 19 '08 at 21:14

4 Answers

vote up 2 vote down check

You need the [ and ] arond every escape sequence; do $BLUE and the like include these? If not, they need to be bracketed with these calls.

link|flag
seems that is needed on the last line. not really required on a previous line. – Milhous Sep 20 '08 at 4:16
vote up 0 vote down

If the problem seems to be with the newline, try putting \r\n instead of just \n and see if it makes a difference.

link|flag
vote up 0 vote down

I get the same problem (on OS X) with your PS1. If I remove the \[ and \]

PS1="${BLUE}\u${CYAN}@${RED}\h${BLUE}\w\n${red}\$${NC}"

this works fine. Are the sqare brackets needed? I've never used them, but from the docs:

\[ Begin a sequence of non-printing characters. This could be used to embed a terminal control sequence into the prompt.

\] End a sequence of non-printing characters.

link|flag
I tried this, but when i use the prevous commad keys, i get some residue millermj@Leonidas~ $find ./ -na – Milhous Sep 19 '08 at 21:28
vote up 0 vote down

I have now tried

PS1="${BLUE}\u${CYAN}@${RED}\h${BLUE}\w${RED}\r\n\$\[${blue}\]"

Which seems to work The brackets needed to make previous commands work.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.