linux中for的用法
1.用(())#!/bin/bashclear for((i=1;i do if((i%3==0)) then echo $i continue fi done2.使用`seq 100`#!/bin/bashclear for i in `seq 100` do if((