Last active
November 5, 2016 16:14
-
-
Save stlehmann/3b6be1f31802e49cceceeacf8f4404ae to your computer and use it in GitHub Desktop.
my personal .bashrc file
This file contains hidden or 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
# ---------------------------------------------- | |
# command prefix | |
# ---------------------------------------------- | |
export PS1="\[\033[0;32m\]\h:\w$\[\033[0m\] " | |
# ---------------------------------------------- | |
# aliases | |
# ---------------------------------------------- | |
alias venv='source venv/bin/activate' | |
alias mng='python manage.py' | |
# ---------------------------------------------- | |
# functions | |
# ---------------------------------------------- | |
# mkcdir for mkdir and cd into it | |
mkcdir () | |
{ | |
mkdir -p -- "$1" && | |
cd -P -- "$1" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment