シェルスクリプトの実行中にこのエラーが発生します - bash: ./helloworld.sh: No such file ordirectory [閉じる]

シェルスクリプトの実行中にこのエラーが発生します - bash: ./helloworld.sh: No such file ordirectory [閉じる]

Ubuntuで次のプログラムを実行するとエラーが発生します。bash: ./helloworld.sh: No such file or directory

#!/bin/bash
echo "Hello World"

Bashを確認し、chmod権限も付与しました。

ベストアンサー1

私は3つのことを確認します。

  • /bin/bash存在し実行可能であることを確認してください。
  • ./helloworld.sh存在を確認する
  • ./helloworld.sh実行ファイルの確認

おすすめ記事