8
9

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 1 year has passed since last update.

シェルスクリプトで改行する時はバックスラッシュの後に何も入れてはならぬ ( command not found )

Last updated at Posted at 2018-07-20

スクリプトの例

example.sh
#!/bin/bash

echo A \
     B \
     C

echo D \
     E \ 
     F

結果

$ bash example.sh

A B C
D E
example.sh: line 7: F: command not found

command not found !!! Oooooooooooops!!!

何が悪いの?

E の行のバックスラッシュの後ろにスペースがある。

理由

おそらく

  • Eの行は、改行をエスケープするのではなく、スペースをエスケープしている
  • echo コマンドはそこで終了する
  • シェルのインタープリタは次の行に進み、コマンドを実行しようとする
  • F なんていうコマンドは存在しないのでエラーで終わる

環境

  • bash 3.2

参考

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

8
9
0

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
8
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?