我有一个要在 Centos 7 中获取的文件。如果我这样做,它就可以正常工作:
$ source set_puregev_env
但是,如果我把它放在一个 shell 脚本中,它就不起作用..
$ sh xRUN
xRUN: line 3: source: set_puregev_env: file not found
这是我的 shell 脚本:xRUN
#!/bin/bash
source set_puregev_env
谁能告诉我我可能做错了什么或错过了什么?