chiark
/
gitweb
/
~mdw
/
profile
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
bb5c6b7
)
dot/bashrc: Show the exit code of a failed command in the prompt.
author
Mark Wooding
<mdw@distorted.org.uk>
Thu, 8 Jan 2015 14:12:04 +0000
(14:12 +0000)
committer
Mark Wooding
<mdw@distorted.org.uk>
Thu, 8 Jan 2015 14:12:04 +0000
(14:12 +0000)
dot/bashrc
patch
|
blob
|
blame
|
history
diff --git
a/dot/bashrc
b/dot/bashrc
index a7173f7bc1bb9187a139495ff6ac01df4b4405fd..7fa8e3aa5e9f80e97d86723322639aba546411ba 100644
(file)
--- a/
dot/bashrc
+++ b/
dot/bashrc
@@
-35,10
+35,12
@@
if [ -t 0 ]; then
"") bold="\[$(tput md)\]" unbold="\[$(tput me)\]" ;;
*) bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" ;;
esac
"") bold="\[$(tput md)\]" unbold="\[$(tput me)\]" ;;
*) bold="\[$(tput bold)\]" unbold="\[$(tput sgr0)\]" ;;
esac
+ rccolour="\[$(tput setaf 1)\]"
+ uncolour="\[$(tput op)\]"
nl="\[
\r
\]"
;;
*)
nl="\[
\r
\]"
;;
*)
- bold='' unbold='' nl='' ;;
+ bold='' unbold='' nl=''
rccolour='' uncolour=''
;;
esac
## Choose the right delimiters. Highlight root prompts specially;
esac
## Choose the right delimiters. Highlight root prompts specially;
@@
-67,9
+69,12
@@
if [ -t 0 ]; then
fi
## Build the prompt string.
fi
## Build the prompt string.
- PS1="$nl$bold$left$sec_l$u\\h$sec_r \\w$marker$right$unbold"
+ rc="$unbold$rccolour\$(rc=\$?;case \$rc in 0);;"
+ rc="$rc*)echo -n \" rc=\$rc\";;esac;exit \$rc)$uncolour$bold"
+ PS1="$nl$bold$left$sec_l$u\\h$sec_r \\w$rc$marker$right$unbold"
PS2="$PS1 $bold>$unbold "
unset nl bold unbold left right sec_l sec_r marker
PS2="$PS1 $bold>$unbold "
unset nl bold unbold left right sec_l sec_r marker
+ unset rccolour uncolour rc
fi
###--------------------------------------------------------------------------
fi
###--------------------------------------------------------------------------