For some reason the color escape characters in my /etc/issue
file are not working. They're being displayed as text:
Here is the content of the file:
^[[1;31mUbuntu^[[0m
And it outputs the exact same thing at the login prompt:
^[[1;31mUbuntu^[[0m
The escapes are not properly recognized, so how can I solve that?
echo
, you have to useecho -e
... For more seeman echo
? What are you trying to do? – Wilf Dec 09 '13 at 21:33