标签:function openwrt shell busybox 函数
在openwrt上运行的是busybox,功能和一般linux发行版自带的 bash shell 差不多。
但是针对嵌入式系统做了很多的裁剪,语法上也和 bash shell 有一点差异。
本文主要记录的是 在脚本中声明和调用函数的过程。
(1)声明函数
test() { echo "hello world" }
(2)调用函数
#main echo "start" test return 0
此外,调用的时候不需要加括号,直接使用函数名
标签:function openwrt shell busybox 函数
原文地址:http://blog.csdn.net/fish43237/article/details/45824057