POSIXシェルに該当するものはありますか?set -x
または、シェルで実行されているコマンドがシェルにset -o xtrace
表示されるようにしますか?fish
答え1
Fish 3.1.0以降、このfish_trace
変数を使用すると、次の機能を使用できます。
> set fish_trace on; isatty; set -e fish_trace
++ source share/fish/functions/isatty.fish
++++ function isatty -d 'Tests if a file descriptor is a tty'
+ isatty
+++ set -l options h/help
+++ argparse -n isatty h/help --
+++ if
+++ set -q _flag_help
+++ end if
+++ if
+++ set -q 'argv[2]'
+++ end if
+++ set -l fd
++++ set fd 0
+++ '[' -t 0 ']'
+ set -e fish_trace
トレース出力の位置は、--debug-output
フィッシュプロセスのオプションによって制御されます。
fish 3.1.0より前は、fish -p some_trace_file
fishセッションを実行して構成ファイルを「some_trace_file」に出力することができました。
答え2
set -o xtrace
inと同様に、私が見ることができる最も近いのはor呼び出しを使用するzsh
ことです。fish
-d 4
--debug-level=4
$ fish -d 4 -c 'echo 1'
fish: Exec job 'builtin source /usr/share/fish/config.fish 2>/dev/null' with id 1
fish: Exec job 'set -g IFS \n\ \t' with id 2
fish: Set status of set -g IFS \n\ \t to 0 using short circuit
fish: Job is constructed
fish: Continue job 2, gid 0 (set -g IFS \n\ \t), COMPLETED, NON-INTERACTIVE
...
fish: Exec job 'echo 1' with id 1
1
fish: Set status of echo 1 to 0 using short circuit
fish: Job is constructed
fish: Continue job 1, gid 0 (echo 1), COMPLETED, NON-INTERACTIVE