`set -x` 调试我的 `.zshrc`

`set -x` 调试我的 `.zshrc`

当我用来set -x调试命令时,它会输出一些额外的行。

% set -x
+precmd_update_git_vars:1> [ -n '' ']'
+precmd_update_git_vars:1> [ '!' -n '' ']'
+precmd_update_git_vars:2> update_current_git_vars
+update_current_git_vars:1> unset __CURRENT_GIT_STATUS
+update_current_git_vars:3> [[ python == python ]]
+update_current_git_vars:4> _GIT_STATUS=+update_current_git_vars:4> python /home/ismail/zshfiles/gitstatus.py
+update_current_git_vars:4> _GIT_STATUS='' 
+update_current_git_vars:6> __CURRENT_GIT_STATUS=( '' ) 
+update_current_git_vars:7> GIT_BRANCH='' 
+update_current_git_vars:8> GIT_AHEAD='' 
+update_current_git_vars:9> GIT_BEHIND='' 
+update_current_git_vars:10> GIT_STAGED='' 
+update_current_git_vars:11> GIT_CONFLICTS='' 
+update_current_git_vars:12> GIT_CHANGED='' 
+update_current_git_vars:13> GIT_UNTRACKED='' 
+precmd_update_git_vars:3> unset __EXECUTED_GIT_COMMAND

由于这些输出,我无法调试我的命令。

为什么set -x调试我的.zshrc?我只想set -x调试 后面的行set -x

答案1

如果您正在尝试调试脚本,然后不要set -x在终端上使用(即调试在终端中运行的 shell)。您可以-x使用解释器选项来启动脚本(例如, zsh -x <scriptname> [<args>])。

例如,如果您有一个名为 的 zsh 脚本ex.zsh,那么您可以执行以下操作:

$ cat /tmp/ex.zsh
#!/bin/zsh

function () {
    echo "Hello, world!"
}
$ zsh -x /tmp/ex.zsh
+/tmp/ex.zsh:3> '(anon)'
+(anon):1> echo 'Hello, world!'
Hello, world!

答案2

set -x在 shell 中运行会将“所有内容”置于调试模式。但是,如果您只想调试 shell 函数及其调用的任何内容,则可以使用typeset -ft some_func该函数来标记该函数以进行调试。例如:

$ which some_func
some_func() {
   echo "hiii"
   ls -ls
   some_other_func 
}
$ typeset -ft some_func
$ some_func
....
<debug output here>
...

这会将调试输出的范围限制为您关心的代码。只需运行typeset -f +t some_func即可关闭调试。如果您想调试独立于您的环境的单独脚本,请zsh -x script.sh像有人提到的那样运行它。

答案3

在这里。我把以下几行放在我的.zshrc

alias debugOn='DEBUGCLI=YES exec zsh' 
alias debugOff='DEBUGCLI=NO exec zsh' 

if [[ $DEBUGCLI == "YES" ]]

then

export PS1="%F{013}%2~%f%(?.%F{004}.%F{001}✕%?)%# %f"

else 
. ~/zshfiles/zsh-git-prompt.zsh
export PS1="%F{013}%2~%f$(git_super_status)%(?.%F{004}.%F{001}✕%?)%# %f"

fi

现在它的工作原理如下:

Documents/check:master✔% debugOn
Documents/check% set -xv              
Documents/check% echo "Debugging Line"
echo "Debugging Line"
+zsh:3> echo 'Debugging Line'
Debugging Line
Documents/check% set +xv              
set +xv
+zsh:4> set +xv
Documents/check% debugOff             
Documents/check:master✔% 

相关内容