我有一个脚本,使用sh shell。我在使用source命令的行中得到一个错误。它似乎源不包括在我的sh shell。

如果我显式地尝试从shell运行source,我得到:

sh: 1: source: not found

我是否应该安装“source”?我的sh版本是否错误?


当前回答

$ls -l `which sh`
/bin/sh -> dash

$sudo dpkg-reconfigure dash #Select "no" when you're asked
[...]

$ls -l `which sh`
/bin/sh -> bash

那就好了

其他回答

Bourne shell (sh)使用PATH定位源<文件>。如果你试图获取的文件不在你的路径中,你会得到错误“文件未找到”。

试一试:

source ./<filename>

source是bash内置命令,因此要执行source命令,您可以以Root用户登录。

sudo - s 源。/ filename.sh

你有两个选择,从纯shell切换到bash,启用bash功能,包括source。 https://superuser.com/questions/1220159/bash-prompt-variables-not-working/1764353#1764353

或者使用。而不是用这种形式的源

. ~ / .your_file_name

例如

我们走吧。~ / . bashrc

请考虑在多特和蒂尔达之间留个位置。Tilda指的是主目录,如果你的文件位于主目录上方的某个位置,请使用/中的绝对地址

我在Ubuntu上的gnu Makefile中找到了(其中/bin/sh -> bash)

我需要用。命令,并使用./前缀指定目标脚本(参见下面的示例)

源没有工作在这种情况下,不确定为什么,因为它应该调用/bin/ bash_. .

我的SHELL环境变量也设置为/bin/bash

test:
    $(shell . ./my_script)

注意,这个示例不包括制表符;必须格式化堆栈交换。

如果你不能把脚本改成“。”而不是“source”,把“sh”的链接改成“bash”而不是“dash”:

# which sh
/usr/bin/sh

# which bash
/usr/bin/bash

# ls -la /usr/bin/sh
lrwxrwxrwx 1 root root 4 Oct  5 15:55 /usr/bin/sh -> dash

# ls -sf /usr/bin/bash /usr/bin/sh

# ls -la /usr/bin/sh
lrwxrwxrwx 1 root root 4 Feb  6 09:18 /usr/bin/sh -> bash