3
私はbashを学んでいます。私は間違って空の関数で構文エラーが発生しました。シェルで空の関数を定義できないのはなぜですか?
#!/bin/bash
# script name : empty_function.sh
function empty_func() {
}
bash empty_function.sh
empty_function.sh: line 3: syntax error near unexpected token `}'
empty_function.sh: line 3: `}'
空の関数の定義のためと思われます。 空の関数を定義できない理由を知りたいのですが?