KornShell (ksh) SegFault

发布于 2024-08-20 01:15:33 字数 576 浏览 7 评论 0原文

我发现以下脚本会导致 AIX 上的 KornShell (ksh) 中出现分段错误和核心。谁能解释为什么我得到以下结果?

  • 段错误

    doOutput(){
      回声“某事”
    }
    
    doOutput() >&1
    

    或者

    doOutput(){
      回声“某事”
    }
    
    回显 `doOutput()`
    

  • 无输出

    doOutput(){
      回声“某事”
    }
    
    输出()
    

  • 正确

    doOutput(){
      回声“某事”
    }
    
    输出 
    

    doOutput(){
      回声“某事”
    }
    
    doOutput >&1
    

  • I have found the following script causes a segmentation fault and core in KornShell (ksh) on AIX. Can anyone explain why I get the following results?

  • Seg Fault

    doOutput(){
      Echo "Something"
    }
    
    doOutput() >&1
    

    OR

    doOutput(){
      Echo "Something"
    }
    
    echo `doOutput()`
    
  • No Output

    doOutput(){
      Echo "Something"
    }
    
    doOutput()
    
  • Correct

    doOutput(){
      Echo "Something"
    }
    
    doOutput 
    

    OR

    doOutput(){
      Echo "Something"
    }
    
    doOutput >&1
    
  • 如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(2

    风筝有风,海豚有海 2024-08-27 01:15:33

    对 shell 中的函数(例如 ksh)的调用不使用括号。它们仅在函数定义期间使用。

    正确:

    doOutput(){
      Echo "Something"
    }
    
    doOutput
    

    如果您调用带参数的函数,则使用空格(无括号)分隔它们:

    doOutput(){
      Echo "$1 and then $2"
    }
    
    doOutput go stop
    

    不正确:

    doOutput(){
      Echo "Something"
    }
    
    doOutput()
    

    另外,为什么要将 stdout 重定向到 stdout (> ;&1)?

    Calls to functions in shells such as ksh don't use parentheses. They are only used during function definition.

    Correct:

    doOutput(){
      Echo "Something"
    }
    
    doOutput
    

    If you call a function with parameters, you separate them using spaces (no parentheses):

    doOutput(){
      Echo "$1 and then $2"
    }
    
    doOutput go stop
    

    Incorrect:

    doOutput(){
      Echo "Something"
    }
    
    doOutput()
    

    Plus, why are you redirecting stdout to stdout (>&1)?

    水溶 2024-08-27 01:15:33

    您在 ksh 中发现了一个错误,只有其作者或有权访问源代码的人才能向您解释它。真正的 ksh 过去并不是开源的,但也许情况已经改变了。

    You've found a bug in ksh, and only the authors thereof, or someone with access to the source, can explain it to you. Real ksh didn't used to be open source, but perhaps that's changed.

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文