shell下function报错

前端之家收集整理的这篇文章主要介绍了shell下function报错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。


我输入最简单的function函数
#!/bin/bash
#hello-fun
function hello()
{
echo "hello,today is `date`"
return 1
}

提示以下错误
ymj@ymj-laptop:~/scripts$ sh hello_function.sh
hello_function.sh: 3: Syntax error: "(" unexpected


帮你修改了一下,下面是正确的结果

CODE:
#!/bin/bash
#hello-fun
function hello()
{
echo "hello,today is `date`"
return 1
}
hello

运行结果如下:
CODE:
hello,today is 2010年 10月 04日 星期一 11:57:57 CST
原文链接:https://www.f2er.com/bash/392914.html

猜你在找的Bash相关文章