4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

bashスクリプトを実行すると bad interpreter エラーになるときの解決方法

Last updated at Posted at 2020-11-18

初めてシェルスクリプトを作成して実行したみたところ、エラーが出たのでメモ。

##作成したシェルスクリプト
スクリプトファイルを作成。

$ touch script.sh

作成していたスクリプトは以下。
Helloを表示するだけの単純なスクリプト。

#!/usr/bin/bash
echo Hello

##実行
実行すると、

$ ./script.sh

エラーが出る

-bash: ./script.sh: /usr/bin/bash: bad interpreter: No such file or directory

##対処法
指定しているbashが異なっていることが原因なため、使用しているbashをwhich bashで確認。
ここで使われていたのは/bin/bashだった。

$ which bash
/bin/bash

スクリプトの中身を以下のように修正すると実行できた。

#!/bin/bash
echo Hello

初心者で初記事で理解が及んでいませんがとりあえず。
間違っている等あれば教えてください。

4
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?