标签:shell脚本 脚本 blog shel 了解 用法 style pre shell
方法一:
while循环,用的比较多的
#!/bin/bash set j=2 while true do let "j=j+1" echo "----------j is $j--------------" done
方法二:
for ,看到这个用法时,看来是真真了解了for的含义
#!/bin/bash set i=0 set j=0 for((i=0;i<10;)) do let "j=j+1" echo "-------------j is $j -------------------" done
标签:shell脚本 脚本 blog shel 了解 用法 style pre shell
原文地址:http://www.cnblogs.com/landhu/p/7049173.html