Bash: Display exit status in prompt:

GREEN="e[1;32m"
RED="e[1;31m"
NONE="e[m"

get_exit_status(){
   es=$?
   if [ $es -eq 0 ]
   then
       echo -e "${GREEN}${es}${NONE}"
   else
       echo -e "${RED}${es}${NONE}"
   fi
}

get_path(){
    #dummy function
    echo "PATH"
}

PROMPT_COMMAND='exitStatus=$(get_exit_status)'

The following gives me the correct exitStatus but colour variables are not expanded:

PS1='${RED}h $(get_path) ${exitStatus}${NONE} '

However, the one below, gives me the colours but the exit status does not update:

PS1="${RED}h $(get_path) ${exitStatus}${NONE} "

What is the right way to do this? How can I fix this so that the exitStatus and colours both work?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Gilles identified your main problem, but I wanted to try explaining it differently.

Bash interprets the special prompt escapes only before expanding any variables in the prompt. This means that using e in a variable that is expanded from the prompt doesn’t work, even though it does work directly in PS1.

For example, this works as expected, and gives red text:

PS1='e[1;31m this is in red '

But this doesn’t, it just puts a literal e in the prompt:

RED='e[1;31m'
PS1="$RED not in red "

If you want to store the color escapes in variables, you can use ANSI-C quoting ($'...') to put a literal escape character in the variable.

To do this, you can change your definition of GREEN, RED, and NONE, so their value is the actual escape sequence.

GREEN=$'33[1;32m'
RED=$'33[1;31m'
NONE=$'33[m'

If you do that, your first PS1 with the single quotes should work:

PS1='${RED}h $(get_path) ${exitStatus}${NONE} '

However, then you will have a second problem.

Try running that, then press Up Arrow, then Home, and your cursor will not go back to the start of the line.

To fix that, change PS1 to include [ and ] around the color escape sequences, e.g.

PS1='[${RED}]h $(get_path) $?[${NONE}] '

You can’t use get_exit_status properly here, since its output contains both printing (the exit code) and non-printing characters (the color codes), and there’s no way to mark it correctly in the prompt. Putting [...] would mark it as non-printing in full, which is not correct. You’ll have to change the function so that it only prints the proper color-code, and then surround it with [...] in the prompt.

Method 2

When you run PS1='${RED}h $(get_path) ${exitStatus}${NONE} ', the PS1 variable is set to ${RED}h $(get_path) ${exitStatus}${NONE}, where only h is a prompt escape sequence. After the prompt sequences are expanded (yielding ${RED}darkstar $(get_path) ${exitStatus}${NONE}), the shell performs the usual expansions such as variable expansions. You get a displayed prompt that looks like e[1;31mdarkstar PATH 0e[m. Nothing along the way expands the e sequences to actual escape characters.

When you run PS1="${RED}h $(get_path) ${exitStatus}${NONE} ", the PS1 variable is set to e[1;31mh PATH 0e[m. The variables RED, exitStatus and NONE are expanded at the time of the assignment. Then the prompt contains three prompt escape sequences (e, h, and e again). There are no shell variables to expand at this stage.

In order to see colors, you need the color variables to contain actual escape characters. You can do it this way:

RED=$'33[1;31m'
NONE=$'33[m'
PS1='[${RED}]h w $?[${NONE}] '

$'…' expands backslash-octal sequences and some backslash-letter sequences such as n, but not including e. I made three other changes to your prompt:

  • Use […] around non-printing sequences such as color-changing commands. Otherwise your display will end up garbled because bash can’t figure out the width of the prompt.
  • w is a built-in escape sequence to print the current directory.
  • You don’t need anything complicated to show $? in the prompt if you don’t have a PROMPT_COMMAND in the first place.

Method 3

Try:

PS1='`exitStatus=$?;if [ $exitStatus -eq 0 ];then echo "['${GREEN}']";else echo "['${RED}']";fi;echo "h $(get_path) ${exitStatus}${NONE}"`'

Method 4

Here is the approach I have gone with, it avoids the use of PROMPT_COMMAND.

# This function is called from a subshell in $PS1,
# to provide a colourised visual indicator of the exit status of the last run command
__COLOURISE_EXIT_STATUS() {
    # uncomment the next line for exit code output after each command, useful for debugging and testing
    #printf -- "nexit code: $1n" >&2
    [[ 0 == "$1" || 130 == "$1" ]] && printf -- "$GREEN" || printf -- "$RED"
}

Then my $PS1 is as follows:

PS1='# ${debian_chroot:+($debian_chroot)}'"${GREEN}u${YELLOW}@${DARK_YELLOW}h${WHITE}:${LIGHT_BLUE}w${WHITE}n"'[$(__COLOURISE_EXIT_STATUS $?)]# $'"[${WHITE}] "

Method 5

Here you go – This Works For Me (TM) in Ubuntu and other Linuxes (Linuxen?).

The reason for putting the exit code detection in $PS1 is that one host has a read-only $PROMPT_COMMAND set before .bashrc is read.

Method 6

For PROMPT_COMMAND, it’s cleaner to define a function and use that:

prompt_command() {
    # ...
}
PROMPT_COMMAND=prompt_command


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x