9 lines
153 B
Bash
9 lines
153 B
Bash
|
bin_path=$(pwd)/target/debug/make_prompt
|
||
|
|
||
|
PROMPT_COMMAND='make_prompt'
|
||
|
|
||
|
make_prompt () {
|
||
|
local prompt_pref=$($bin_path $?)
|
||
|
PS1="$prompt_pref"
|
||
|
}
|