请问下面这个shell脚本有什么问题?为什么函数执行不了?
1#!/bin/sh2#function3if[-d/etc]4then5fun6fi78fun(){9/bin/echo"hello"10}执行结果如下:[root@l...
1 #!/bin/sh
2 #function
3 if [ -d /etc ]
4 then
5 fun
6 fi
7
8 fun(){
9 /bin/echo "hello"
10 }
执行结果如下:
[root@localhost shellScript]# sh function.sh
function.sh: line 5: fun: command not found
[root@localhost shellScript]# vi function.sh
fun是个函数,在下面定义了,为什么还提示command not found? 展开
2 #function
3 if [ -d /etc ]
4 then
5 fun
6 fi
7
8 fun(){
9 /bin/echo "hello"
10 }
执行结果如下:
[root@localhost shellScript]# sh function.sh
function.sh: line 5: fun: command not found
[root@localhost shellScript]# vi function.sh
fun是个函数,在下面定义了,为什么还提示command not found? 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询