shell for {} 循环中无法使用变量
n=10
比如 for i in {0..$n} 这个样子是错误的, shell无法识别{}中的$n
我们可以这个样子
for ((i=0;i<$n;i++));do...
这个样子就可以解决
shell for {} 循环中无法使用变量
n=10
比如 for i in {0..$n} 这个样子是错误的, shell无法识别{}中的$n
我们可以这个样子
for ((i=0;i<$n;i++));do...
这个样子就可以解决