我在执行 shell 脚本时收到此错误 - bash: ./helloworld.sh: 没有这样的文件或目录

我在执行 shell 脚本时收到此错误 - bash: ./helloworld.sh: 没有这样的文件或目录

我在 Ubuntu 中执行下面的程序并收到错误 -bash: ./helloworld.sh: No such file or directory

#!/bin/bash
echo "Hello World"

我检查了 bash 并且也授予了chmod权限

答案1

我会检查三件事:

  • 确认/bin/bash存在且可执行
  • 确认./helloworld.sh存在
  • 确认./helloworld.sh可执行

相关内容