免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: yuhe27913
打印 上一主题 下一主题

主程序如何向function传参? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-11-13 14:41 |只看该作者
[root@MYDB ~]# more para.sh
#!/bin/bash
num=0
fun1 ()
{
echo "now we step in function.do nothing to it $num"
num=`echo "$num+1"|bc`
echo "we change its value in the function $num"
return 99
}
echo "The original value of num is $num"
num=`echo "$num+1"|bc`
echo "Then change its value in main program and make it now $num"
fun1
echo "at last,we back to main program,recheck $num"

补一个变量范围的例子
[root@MYDB ~]# bash para.sh
The original value of num is 0
Then change its value in main program and make it now 1
now we step in function.do nothing to it 1
we change its value in the function 2
at last,we back to main program,recheck 2


shell没有所谓的变量边界问题。

论坛徽章:
0
12 [报告]
发表于 2008-11-13 14:42 |只看该作者
久不写脚本,还真转不过弯来。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP