Linux常用命令-unset 发表于 2020-12-22 分类于 command 命令unset 描述Unset values and attributes of shell variables and functions取消变量 用法1unset [name ...] 选项无 注意readonly只读变量无法取消 示例1234567$ a=3$ echo $a3$ unset a$ echo $a