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.

390 B

unset

说明

unset命令 用于删除已定义的shell变量包括环境变量和shell函数。unset命令不能够删除具有只读属性的shell变量和环境变量

选项

-f仅删除函数
-v仅删除变量

实例

unset -v mylove # 使用unset命令将前面所创建的环境变量mylove及其对应的值进行删除