Skip to content

Instantly share code, notes, and snippets.

@raja-ashok
Last active March 25, 2020 15:56
Show Gist options
  • Save raja-ashok/fa4ac7e0d0a73b75b9ed875e94eb87d8 to your computer and use it in GitHub Desktop.
Save raja-ashok/fa4ac7e0d0a73b75b9ed875e94eb87d8 to your computer and use it in GitHub Desktop.
bashrc
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
netns_name() {
str=`ip netns identify $$`
[[ "$str" != "" ]] && echo "\033[1;35m[$str]\033[0m " && return
}
export PS1="\u@\h\[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\]\n$ "
eval $(ssh-agent -s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment