为什么这个工作
原文链接:https://www.f2er.com/bash/388682.htmltimeout 10s echo "foo bar" # foo bar
但这不会
function echoFooBar { echo "foo bar" } echoFooBar # foo bar timeout 10s echoFooBar # timeout: Failed to run command `echoFooBar': No such file or directory
我该如何让它工作?