zl程序教程

您现在的位置是:首页 >  后端

当前栏目

shell 变量自增

变量shell 自增
2023-09-27 14:25:24 时间

i=$(( $i + 1 ))

let i+=1;

((i++));

 i=$[$i+1];

 i=`expr $i + 1`;