2016-03-02 1614 views

回答

2

不,没有for - 一次循环。

但是,要获得类似的结果,你可以使用while循环:

#!/bin/csh 
set j = 11 
while ($j <= 24) 
    echo $j 
    @ j++ 
end