Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 "alias -g" 在我的 zsh shell 中定义了一个全局别名。当我试图取消它的别名时,shell 会抛出以下错误:“unalias:没有这样的哈希表元素”。
关于如何取消全局定义别名的任何指针?
您需要在尝试unalias. 试着说:
unalias
unalias \aliasname
代替
unalias aliasname
因为它是一个全局别名,shell 会在命令行的任何地方替换它,除非你转义它。