Created
December 16, 2011 06:01
-
-
Save nicerobot/1484716 to your computer and use it in GitHub Desktop.
Abbreviating PROMPT_COMMAND with ${HOME} to ~ replacement pure bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export PROMPT_COMMAND='PS1X=$(p="${PWD#${HOME}}"; [ "${PWD}" != "${p}" ] && printf "~";IFS=/; for q in ${p:1}; do printf /${q:0:1}; done; printf "${q:1}")' | |
export PS1='\j \u@\h:${PS1X} $ ' | |
# http://unix.stackexchange.com/a/26860/6128 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment