|
|
|
|
|
by egwynn
4687 days ago
|
|
It should probably emit the example PS1 with single quotes instead of double quotes. This: export PS1="\h:\W\$(parse_git_branch) \u$ "
will execute parse_git_branch only once (at the time PS1 is set) but this: export PS1='\h:\W\$(parse_git_branch) \u$ '
will execute it every time the prompt every time. |
|