Skip to content

Instantly share code, notes, and snippets.

@ajax13
Last active April 9, 2018 14:20
Show Gist options
  • Save ajax13/78db7da9995de18784d5b1e706b04fa1 to your computer and use it in GitHub Desktop.
Save ajax13/78db7da9995de18784d5b1e706b04fa1 to your computer and use it in GitHub Desktop.
Custom sell commands
# safety features
alias cp='cp -i'
alias mv='mv -i'
alias rm='rm -I' # 'rm -i' prompts for every file
alias ln='ln -i'
alias chown='chown --preserve-root'
alias chmod='chmod --preserve-root'
alias chgrp='chgrp --preserve-root'
# display git branch
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[0;31m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
@ajax13
Copy link
Author

ajax13 commented Apr 9, 2018

reload .bashrc without logging out and back in:
source ~/.bashrc

export TERM=xterm-color
export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
export CLICOLOR=1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment