gpt4 book ai didi

linux - 无法在树莓派 (raspbian) 上执行简单的 bash 脚本

转载 作者:太空宇宙 更新时间:2023-11-04 08:59:48 24 4
gpt4 key购买 nike

好的,基本上我已经通过在终端中输入 bin 并输入来创建脚本

sudo nano mytesterscript.sh

从那里我写了脚本并保存了它。为了使其可执行,然后我使用了命令

    chmod +x mytesterscript.sh

然后当我想用

来执行它的时候
./mytesterscript.sh

我得到错误:

bin/bash: bad interperter:no such file or directory

我可以通过输入来执行脚本

bash mytesterscript.sh

但我希望能够做到这一点

./mytesterscript.sh

有什么想法吗?

#!bin/bash
#declare $STRING Variable
STRING= "Hello world"
#print variable on screen
echo $STRING

最佳答案

确保脚本的顶部显示:

#!/bin/bash

观察bin前面的/

如果这不起作用,请尝试 which bash 并使用该输出。

关于linux - 无法在树莓派 (raspbian) 上执行简单的 bash 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23793171/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com