shell脚本引用外部变量方法


  • 本地变量只能在当前bash进程中有效,对当前shell之外的其它进程,包括子进程均无效。而启动脚本实际就是开启一个子进程执行命令,所以,在脚本里就无法引用父进程上的本地变量。如下,引用外部变量失败:
[root@centos7 test]#echo $var
yes
[root@centos7 test]#bash test.sh 

[root@centos7 test]#

  • 那如何在脚本中引用外部变量呢,有两种方法可以实现
  1. 第一种:把变量设置成环境变量
[root@centos7 test]#export var
[root@centos7 test]#bash test.sh 
yes
[root@centos7 test]#

  1. 第二种:用source方式启动脚本(或者用. /path/name.sh;注意点号和斜杠之间必须有空格,若没有空格就是直接执行脚本,是不一样的),这种方式不会开启子进程,而是把脚本加载到当前进程中执行,所以也就能引用当前进程中的本地变量了。
[root@centos7 test]#newvar="no"
[root@centos7 test]#source test.sh 
no
[root@centos7 test]#. test.sh 
no
[root@centos7 test]#



你可能感兴趣的:(bash点滴)