为什么会这样
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
怎样使它工作?
转载请注明出处:http://www.yihangfood.com/article/20230526/904666.html