Bash

在 bash 中,如何在不註銷的情況下刪除別名?

  • April 22, 2013

我有一個別名,.bashrc我真的不再想要它了。我刪除了alias,但我的 bash 已經載入了這個別名。

我可以alias在不註銷的情況下從這個 bash 中刪除它嗎?

通過使用unalias

[zak ~]$ alias ls
alias ls='ls --color=auto'
[zak ~]$ unalias ls
[zak ~]$ alias ls
bash: alias: ls: not found

使用unalias命令:

$ alias foo=ls
$ foo
... ls output ...
$ unalias foo
$ foo
bash: foo: command not found

引用自:https://unix.stackexchange.com/questions/73293