This file contains 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
# copy whole content & add them to your .bashrc | |
# from https://phuslu.github.io/bashrc,thanks my friends phuslu | |
if test "${HOME%/*}" = "/Users" ; then | |
alias ls='ls -G' | |
else | |
alias ls='ls -ph --color=auto' | |
fi | |
alias ll='ls -alF' | |
alias rm='rm -i' | |
alias mv='mv -i' |