调试 bash 函数

调试 bash 函数

所以这里我有一个想要调试的简单函数。但是,即使启用,我也无法调试所需的功能set -o functrace。在提出这个问题之前,我已经设法找到了一个可能的解决方案,但没有产生预期的结果,该解决方案位于这里

如何让 bash 调试我的函数?

#!/bin/bash
echo "Hello World"
hello() {
    echo "Hello world"
}

输出:

user@mac11:53:29~/desktop bash -x debug.sh 
+ echo 'Hello World'
Hello World
user@mac11:54:55~/desktop 

答案1

但链接中的答案似乎确实有效......

  Kaizen ~/so_test $ cat zhello.sh
  set -x ;
  set -o functrace

  hello()
  {
   name=$1;
   echo "Hello , how are you $name";
 }

 hello "itin" ;

输出是:

 Kaizen ~/so_test $ ./zhello.sh
  + ./zhello.sh                     --  script was run 
 ++ set -o functrace
 ++ hello itin                      -- function was invoked
 ++ name=itin                       -- variable assigned within the function hello 
 ++ echo 'Hello , how are you itin'
 Hello , how are you itin           -- printed the output from the function ...

我有点好奇,你有什么特别要找的东西吗?

答案2

hello()脚本末尾未调用该函数。用户错误。

相关内容