23
22

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 5 years have passed since last update.

bash スクリプトの -x トレースを指定したファイルに出力する

Last updated at Posted at 2014-07-01

単に set -x すると標準エラーに出力されるが、
$BASH_XTRACEFD で出力先のファイルディスクリプタを指定できる。

FD=3でファイルを開いてそちらに向ける
#!/bin/bash

# FD=3 で出力先ファイルを追記モードでオープン
TRACE_LOG=${TRACE_LOG-/tmp/xtrace.$$.log}
exec 3>>$TRACE_LOG
# 上書きしたい場合は演算子を変える
# exec 3<>$TRACE_LOG

# 出力先を FD=3 に指定
BASH_XTRACEFD=3

# デバッグ出力開始
set -x

#
# 必要な処理を実行
#

# デバッグ出力終了
set +x

# 終わったらファイルを閉じる (明示的にやらなくてもスクリプト終了時に閉じる)
exec 3>&-
23
22
2

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
23
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?