Created
November 27, 2014 10:02
-
-
Save iley/c34c90344c513d5bcf30 to your computer and use it in GitHub Desktop.
This file contains 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
function _prompt_pwd { | |
local max_len=50 | |
local dir=$(pwd|sed -e "s#^$HOME#~#") | |
if [ ${#dir} -gt $max_len ]; then | |
local cut=$(expr ${#dir} - $max_len + 3) | |
dir="...${dir:$cut}" | |
fi | |
echo $dir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment