#一个shell的启动流程 #shell有一些变量,叫做环境变量,这些变量是可以继承的, #比如父shell有$UID,子shell也可以有,而且继承父shell的。 #正常我们声明一个变量,a=1,在子shell里,a是空,自己声明的变量不能被继续。 如果我们自己声明变量,想让子shell也可以用 [[email protected] wyb]# cat a.sh #!/bin/bash echo $a #如果我们自己声明变量,想让子shell也可以用,#export 是内置变量,通过它声明的变量,子shell可以直接用,不然子shell用不了。 [[email protected] wyb]# export a=1 [[email protected] wyb]# bash a.sh 1 #unse为shell内建指令,删除变量或函数。 [[email protected] wyb]# unset a #a=1,在子shell里,a是空 [[email protected] wyb]# a=1 [[email protected] wyb]# bash a.sh [[email protected] wyb]#
时间: 2024-12-28 21:07:45