-
-
Save samsonjs/3877451 to your computer and use it in GitHub Desktop.
change terminal tab name on cd
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
tabname() { | |
printf "\e]1;$1\a" | |
} | |
cd() { | |
if [[ $# -gt 0 ]]; then | |
builtin cd "$*" | |
else | |
builtin cd | |
fi | |
tabname $(basename $(pwd)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment