linux系统中unset清楚变量

1、

[root@centos79 test]# echo $a

[root@centos79 test]# a=10
[root@centos79 test]# echo $a
10
[root@centos79 test]# unset a  ## 清除变量a
[root@centos79 test]# echo $a

 

相关文章

Centos系统之Shell编程基础知识
从Export理解Shell环境和变量生存期
linux shell数组变量、类型及规则
Centos编程Shell基本工作原理方案
Centos操作系统编程之Shell 问答录
rsync-linux备份脚本