2025-02-15发表macOSmacOS终端配置 切换macOS默认shell为bash 1chsh -s /bin/bash 配置当前用户下的 ~/.bash_profile 123456789101112# 移除Mac默认shell警告export BASH_SILENCE_DEPRECATION_WARNING=1# 配置命令行颜色export CLICOLOR=1export LSCOLORS=gxfxaxdxcxegedabagacad# Homebreweval "$(/opt/homebrew/bin/brew shellenv)"export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.ustc.edu.cn/homebrew-core.git"export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles"export HOMEBREW_API_DOMAIN="https://mirrors.ustc.edu.cn/homebrew-bottles/api" 配置后要执行 1source ~/.bash_profile