标签:进程 大数据 作用域 root $$ 大数 class nod lan
当前的shell拥有
生命周期随shell
name=gob
[root@MDNode01 shell]# echo $$
1091
[root@MDNode01 shell]# syy=123
[root@MDNode01 shell]# echo $syy
123
[root@MDNode01 shell]#
如果当前的进程结束以后,变量就会被销毁。
[root@MDNode01 shell]# syy=123
[root@MDNode01 shell]# echo $syy
123
[root@MDNode01 shell]# fun(){
> echo $syy
> syy=12
> echo $syy
> local mgs=111
> echo $mgs
> }
[root@MDNode01 shell]# fun
123
12
111
[root@MDNode01 shell]# echo $syy
12
[root@MDNode01 shell]# echo $mgs
[root@MDNode01 shell]#
可以看出在函数fun()中修改syy的值会对本地变量产生影响,
标签:进程 大数据 作用域 root $$ 大数 class nod lan
原文地址:https://www.cnblogs.com/shaoyayu/p/13289996.html