歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> SHELL編程

Linux shell之for用法

Linux shell之for用法

#!/bin/bash
#for用法:當變量值在列表裡,for循環即執行一次所有命令
for a in [1 2 3 4 5 6 7 8 9 10] #如果a在這些數字裡,就執行下面的命令


do                              #執行下面的命令


{
      echo "a is :$a"        #輸出a 的值


}
done                            #結束


echo "test for end "            #輸出內容

Copyright © Linux教程網 All Rights Reserved