I want to change color of the main command line. Just the first and last ones.
The command I've called and the prompt line that waits to new command.
When I've called a command and it returns some stuff, I'm lost in those! I want to highlight the main line and the new line.
If I can reposition the main line it would be great too!
I'm not sure if it's clear enough, sorry for my bad English.
Asked
Active
Viewed 385 times
1

Gilles 'SO- stop being evil'
- 829,060

de Broglie
- 11
- 1
PS1
variable. You can't color the output ofcat
– OneCricketeer Apr 21 '17 at 22:49export PS1="$(echo -ne "\e[1;33m$PS1\e[0m")"
might work just to colorize the prompt without changing its content. – DopeGhoti Apr 21 '17 at 23:15grep --color '.*' file
– George Vasiliou Apr 22 '17 at 00:25$PS1
, which is unlikely. – Gilles 'SO- stop being evil' Apr 22 '17 at 20:59