windows下IDEA的Terminal配置bash命令
程序员文章站
2024-03-21 16:50:10
...
使用 Git 自带的 bash.exe 配置到 Terminal ,如果电脑上面没有Git需要安装一个
如果有需要添加颜色 需要添加以下两个文件
- .bash_profile
if [ -f ~/.bashrc ]; then . ~/.bashrc; fi
- .bashrc
alias ls='ls -F --color=auto --show-control-chars' # 使用ls命令的时候加上颜色
export LC_ALL=zh_CN.UTF-8 # 设置终端打开的编码
alias ll='ls -la -F --color=auto --show-control-chars'
上一篇: MySQL忘记密码CentOS
下一篇: CSS权重,你真的懂了么