Skip to content

Instantly share code, notes, and snippets.

@fundon
Forked from tj/some.sh
Created December 10, 2012 17:05
Show Gist options
  • Select an option

  • Save fundon/4251864 to your computer and use it in GitHub Desktop.

Select an option

Save fundon/4251864 to your computer and use it in GitHub Desktop.
change terminal tab name on cd
function tabname {
printf "\e]1;$1\a"
}
cd() {
test $# -ne 0 && builtin cd "$*" || builtin cd
tabname $(basename $(pwd))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment