Created
May 3, 2014 09:55
-
-
Save saitodev/c108f522ff9622847d40 to your computer and use it in GitHub Desktop.
bashrc_min2
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
export PS1="-- \[\033[0;31m\]\u@\h \[\033[1;34m\]\w \[\033[0m\]-- \n> " | |
alias ls='ls -hF --color=tty' | |
alias rm='rm -i' | |
alias cp='cp -i' | |
alias mv='mv -i' | |
alias less='less -r' # raw control characters | |
alias grep='grep --color' # show differences in colourx | |
alias ll='ls -l -A' # long list | |
alias la='ls -A' # all but . and .. | |
alias l='ls -CF' # | |
umask 022 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment