Karaf Shell:命令找不到功能

时间:2017-05-10 09:33:19

标签: bash shell apache-karaf jbossfuse

function test {echo“hello”;}无法在karaf shell中执行。

错误:找不到命令:功能

1 个答案:

答案 0 :(得分:0)

我不熟悉Apache Karaf,但我知道您使用的function语法是非标准的。它由Bash支持,但不是所有其他shell。

shell中的标准函数语法就是:

test() { echo "hello"; }

我建议到处使用它。