新创建的别名应不断激活

新创建的别名应不断激活

我为`~/.bashrc 添加一个别名并激活它。

# add some helpful aliases
alias l.='ls -d .* --color=auto'

激活它:

source .bashrc

它在当前的 bash 上运行良好。

$ l.
ls: --color=auto: No such file or directory
.   .cups   .python_history  ...

不幸的是,当我退出并重新启动 bash 时,它拒绝工作

$ l.
-bash: l.: command not found

必须再次手动激活它。

$ source .bashrc
# then it works
$ l.
ls: --color=auto: No such file or directory
.   .cups   .python_history  ...

我的配置有什么问题?

相关内容