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.

20 lines
390 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.

# **unset**
## 说明
**unset命令** 用于删除已定义的shell变量包括环境变量和shell函数。unset命令不能够删除具有只读属性的shell变量和环境变量
## 选项
```markdown
-f仅删除函数
-v仅删除变量
```
## 实例
```bash
unset -v mylove # 使用unset命令将前面所创建的环境变量mylove及其对应的值进行删除
```