KornShell (ksh) SegFault
我发现以下脚本会导致 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?
doOutput(){
Echo "Something"
}
doOutput() >&1
OR
doOutput(){
Echo "Something"
}
echo `doOutput()`
doOutput(){
Echo "Something"
}
doOutput()
doOutput(){
Echo "Something"
}
doOutput
OR
doOutput(){
Echo "Something"
}
doOutput >&1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对 shell 中的函数(例如 ksh)的调用不使用括号。它们仅在函数定义期间使用。
正确:
如果您调用带参数的函数,则使用空格(无括号)分隔它们:
不正确:
另外,为什么要将 stdout 重定向到 stdout (
> ;&1
)?Calls to functions in shells such as ksh don't use parentheses. They are only used during function definition.
Correct:
If you call a function with parameters, you separate them using spaces (no parentheses):
Incorrect:
Plus, why are you redirecting stdout to stdout (
>&1
)?您在 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.