摘要:
一、变量1、普通变量variable1=hellovariable2="hello world"echo $variable1 //output helloecho $variable2 //output helloworld变量自增的实现:方法一:i=0i=`expr $i + 1` #中间有空格,加号两边也有空格方法二:let i=$i+1方法三:i=$(expr $i + 1)2、数组变量:详细用法:http://www.cnblogs.com/chengmo/archive/2010/09/30/1839632.html//赋值方式1:arr[0]=a;arr[1] 阅读全文
posted @ 2012-02-05 21:33 bug yang 阅读(609) 评论(0) 推荐(0) 编辑