You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
432 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# unalias
## 说明
**unalias命令** 用来取消命令别名是为shell内建命令。如果需要取消任意一个命令别名则使用该命令别名作为指令的参数选项即可。
如果使用`-a`选项,则表示取消所有已经存在的命令别名
## 选项
```markdown
-a取消所有命令别名
```
## 实例
```bash
unalias cc # 使用unalias命令将已经设置的命令别名"cc"取消
```