系统相关
首页 > 系统相关> > shell脚本中的export和PWD的作用

shell脚本中的export和PWD的作用

作者:互联网

目录

shell脚本中的export和PWD的作用

本文内容摘录自https://blog.csdn.net/j_bean/article/details/78600511,仅作记录使用非原创。


(1)export 功能说明:设置或显示环境变量。

​ 语法:export [-fnp][变量名称]=[变量设置值]。

​ 补充说明:在shell中执行程序时,shell会提供一组环境变量。export可新增,修改删除环境变量,供后续执行的程序使用。export的效力仅限于该次登陆操作。

​ 参数:

  -f  代表[变量名称]中为函数名称。

  -n  删除指定的变量。变量实际上并未删除,只是不会输出到后续指令的执行环境中。

  -p  列出所有的shell赋予程序的环境变量。

(2)$PWD功能说明:获得当前工作目录路径的字符串值。

(3)应用案例:

一键启动多个微服务工程的脚本:run.sh。内容如下所述:

#!/bin/sh

export servicepath=${PWD} 

cd $servicepath/commonservice/run  
chmod 777*.sh
./stop_8761.sh
./start_8761.sh
sleep 2s

cd $servicepath/customerservice/run
chmod 777*.sh
./stop_8040.sh
./start_8040.sh

标签:shell,变量,PWD,sh,export,环境变量
来源: https://www.cnblogs.com/AJun816/p/16416122.html