4
0

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.

bashのset

Last updated at Posted at 2023-02-28

bashのsetはシェルのオプションを設定するビルトインのコマンドとなっている。

インタラクティブシェルに関するオプションと、シェルスクリプトに関するオプションの両方をsetから操作する。前者はふつうにプロンプトで入力することが多く、後者はスクリプトの冒頭にかかれることが多い。

それぞれのオプションはアルファベット一文字からなるコードと、オプション名を表すアルファベット小文字数文字からなる短い名前を持っている。

例えば

set -eux

とやるとこれは次と同一

set -o errexit  # エラー時にスクリプトを終了する
set -o nounset  # 未定義の変数を参照したらエラー出して終了する
set -o xtrace   # 実行するコマンドを逐一表示する

参考サイト

4
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?