当前位置: 技术问答>linux和unix
linux shell脚本无法改变环境变量
来源: 互联网 发布时间:2017-03-02
本文导语: #!/bin/bash PATH=$PATH:/home/kuang export PATH echo "hello world!" exit 运行完这段脚本之后,发现环境变量并没有添加/home/kuang | 在shell命令行下, 使用source命令运行脚本。 | 在shell命令行...
#!/bin/bash
PATH=$PATH:/home/kuang
export PATH
echo "hello world!"
exit
运行完这段脚本之后,发现环境变量并没有添加/home/kuang
PATH=$PATH:/home/kuang
export PATH
echo "hello world!"
exit
运行完这段脚本之后,发现环境变量并没有添加/home/kuang
|
在shell命令行下, 使用source命令运行脚本。
|
在shell命令行下, 使用source命令运行脚本。