-v
をお持ちのようです セット (何かが実行中 set -v
).
これを逆にするには、set +v
を実行します .
set [--abefhkmnptuvxBCEHPT] [-o option-name] [arg ...] set [+abefhkmnptuvxBCEHPT] [+o option-name] [arg ...] Without options, the name and value of each shell variable are displayed in a format that can be reused as input for setting or resetting the currently-set variables. Read-only variables cannot be reset. In posix mode, only shell variables are listed. The output is sorted according to the current locale. When options are specified, they set or unset shell attributes. Any arguments remaining after option processing are treated as values for the positional parameters and are assigned, in order, to $1, $2, ... $n. Options, if specified, have the following meanings: [...] -v Print shell input lines as they are read.
bash
を参照してください manpage (「Shell Builtin Commands の下」 " セクション) set
の詳細については、 組み込みコマンド。
または help set
を実行します bash
以内から ヘルプ テキストに直接アクセスできます。
少なくとも Bash 4.3 では、このコマンドは set -v
と同様の効果があります。 :
trap 'echo "$BASH_COMMAND"' DEBUG
これがあなたに影響を与えるかどうかを確認するには、実行してください
trap -p DEBUG
設定を解除するには、実行します
trap - DEBUG