.bashrc 文件位于您的主目录中。
所以从命令行做:
cd
ls -a
这将显示您的主目录中的所有隐藏文件。“cd”将带您回家,而 ls -a 将“列出所有”。
通常,当您看到 ~/ 时,tilda 斜杠指的是您的主目录。所以 ~/.bashrc 是您的主目录,其中包含 .bashrc 文件。
自制软件的标准路径在 /usr/local/ 所以如果你:
cd /usr/local
ls | grep -i homebrew
您应该会看到 homebrew 目录 (/usr/local/homebrew)。资源
是的,有时您可能必须创建此文件,而 .bashrc 文件的典型格式为:
# .bashrc
# User specific aliases and functions
. .alias
alias ducks='du -cks * | sort -rn | head -15'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
PATH=$PATH:/home/username/bin:/usr/local/homebrew
export PATH
如果您创建自己的 .bashrc 文件,请确保以下行在您的 ~/.bash_profile 中
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi