看到我想source
在我的 shell 脚本中使用命令。现在,当我在终端上键入 source 时,它显示为
-bash: source: filename argument required
source: usage: source filename [arguments]
现在当我像这样在我的shell脚本中使用它时
#!/bin/sh
source
并保存为 test.sh
然后运行然后像这样
./test.sh: 2: source: not found
如何解决这个问题呢?