最佳答案
为什么会有用
timeout 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
我该怎么做呢?