最近在mac上使用iTerm的时候发现没有办法显示颜色,所以百度了很久,在此记录下自己的心得:
解决办法:
修改 .bash_profile, 添加如下内容:
alias cls='tput reset'
alias egrep='egrep -G'
alias fgrep='fgrep -G'
alias grep='grep -G'
alias l.='ls -d .* -G'
alias ll='ls -l -G'
alias ls='ls -G'
alias vi='vim'
alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
然后使用source .bash_profile命令来是修改的内容生效;
那么,关键问题在于如何在mac上找到并修改.bash_profile文件呢?
尝试1:用mac自带的搜索功能搜索.bash_profile没有结果;
尝试2:尝试命令行的形式
1 打开terminal,使用命令cd ~进入到当前用户的home目录下:
2 输入open -e .bash_profile
,这时./bash_profile
就会打开
3 保存文件,关闭.bash_profile
4 在终端输入source .bash_profile并执行