shell編程:for 迴圈

來源:互聯網
上載者:User

標籤:nbsp   tab   變數   roo   while   列表   one   exp   遞增   

hell 編程——for in 迴圈

 -------for in 格式-------  
  1. for 無$變數 in 字串 
  2. do 
  3.   $變數 
  4. done 
 一簡單的字串 枚舉遍曆法,利用for in格式對字串按空格切份的功能 
  1. SERVICES="80   22   25   110   8000   23   20   21   3306   " 
  2.  
  3. for   x   in   $SERVICES     
  4.   do      
  5.   iptables   -A   INPUT   -p   tcp   --dport   $x   -m   state   --state   NEW   -j   ACCEPT      
  6.   done 
 -------for variable in values--------------字串數組依次賦值
  1. #!/bin/sh 
  2. for i in a b c           字串列表A B C  
  3.          字串用空格分隔,沒有括弧,沒有逗號, 然後迴圈將其依次賦給變數i 
  4.          變數沒有$ 
  5. do 
  6. echo "i is $i" 
  7. done  
[[email protected] ~]$ sh test.shi is ai is bi is c  -------for in 裡,變數和*不等價-------
  1. #!/bin/bash 
  2. for i in *.h ; 
  3. do 
  4. cat ${i}.h 
  5. done  
[[email protected] test]$ ./tip.shcat: *.h.h: No such file or directory $i代表的是整個路徑,而不是*.h裡的.h前面的部分改正 
  1. #!/bin/bash 
  2. for i in *.h 
  3. do 
  4. cat $i 
  5. done   
[[email protected] test]$ echo hahaha >>1.h[[email protected] test]$ echo ha >>2.h [[email protected] test]$ ./tip.shhahahaha    例2:
  1. for i in /etc/profile.d/*.sh  
  2. do 
  3.   $i 
  4. done  
 $i代表的是/etc/profile.d/color.sh,/etc/profile.d/alias.sh, /etc/profile.d/default.sh          -------for in 對(命令列,函數)參數遍曆-------
  1. test() 
  2.         local i 
  3.         for i in $* ; do 
  4.              echo "i is $i" 
  5.         done 
$*是字串:以"參數1 參數2 ... " 形式儲存所有參數 $i是變數i的應用表示[[email protected] ~]$ sh test.sh p1 p2 p3 p4 i is p1i is p2i is p3i is p4   ------- for in語句與萬用字元*合用,批量處理檔案-------    批量改檔案名稱[[email protected] testtip]# lsaaa.txt  ccc.txt  eee.txt  ggg.txt  hhh.txt  jjj.txt  lll.txt  nnn.txtbbb.txt  ddd.txt  fff.txt  go.sh    iii.txt  kkk.txt  mmm.txt  ooo.txt[[email protected] testtip]# cat go.sh 
  1. for i in *.txt                 *.txt相當於一個字串數組,依次迴圈賦值給i 
  2. do 
  3. mv "$i" "$i.bak"        
  4. done 
[[email protected] testtip]# sh go.sh [[email protected] testtip]# lsaaa.txt.bak  ccc.txt.bak  eee.txt.bak  ggg.txt.bak  hhh.txt.bak  jjj.txt.bak  lll.txt.bak  nnn.txt.bak bbb.txt.bak  ddd.txt.bak  fff.txt.bak  go.sh        iii.txt.bak  kkk.txt.bak  mmm.txt.bak  ooo.txt.bak -------for in語句與` `和$( )合用,利用` `或$( )的將多行合為一行的缺陷,實際是合為一個字串數組------- 
  1. for i in $(ls *.txt)         
  2. do 
  3. echo $i 
  4. done 
[[email protected] ~]$ sh test111-tmp.txt111.txt22.txt33.txt或者說,利用for in克服` `和$( ) 的多行合為一行的缺陷  -------利用for in 自動對字串按空格遍曆的特性,對多個目錄遍曆------- 
  1. LIST="rootfs usr data data2" 
  2.     
  3. for d in $LIST; do          
  4.   mount /backup/$d 
  5.   rsync -ax --exclude fstab --delete /$d/ /backup/$d/ 
  6.   umount /backup/$d 
  7. done 
********Linux Shell for迴圈寫法總結******** 
  1. for((i=1;i<=10;i++));do echo $(expr $i \* 4);done 
  2. 在shell中常用的是 for i in $(seq 10) 
  3. for i in `ls` 
  4. for i in ${arr[@]}  
  5. for i in $* ; do 
  6. for File in /proc/sys/net/ipv4/conf/*/accept_redirects; do 
  7. for i in f1 f2 f3 ;do 
  8. for i in *.txt 
  9. for i in $(ls *.txt) 
for in語句與` `和$( )合用,利用` `或$( )的將多行合為一行的缺陷,實際是合為一個字串數組 ============ -_- ==============for num in $(seq 1 100) 
  1. LIST="rootfs usr data data2" 
  2. for d in $LIST; do 
  3. 用for in語句自動對字串按空格遍曆的特性,對多個目錄遍曆 
  4. for i in {1..10} 
  5. for i in stringchar {1..10} 
  6. awk ‘BEGIN{for(i=1; i<=10; i++) print i}‘ 
注意:AWK中的for迴圈寫法和C語言一樣的=============================================================== 
  1. #/bin/bash 
  2. # author: 周海漢 
  3. # date :2010.3.25 
  4. # blog.csdn.net/ablo_zhou 
  5.  
  6. arr=("a" "b" "c") 
  7. echo "arr is (${arr[@]})" 
  8. echo "item in array:" 
  9. for i in ${arr[@]} 
  10. do 
  11.  echo "$i" 
  12. done 
  13. echo "參數,\$*表示指令碼輸入的所有參數:" 
  14. for i in $* ; do 
  15. echo $i 
  16. done 
  17. echo 
  18. echo ‘處理檔案 /proc/sys/net/ipv4/conf/*/accept_redirects:‘ 
  19. for File in /proc/sys/net/ipv4/conf/*/accept_redirects; do 
  20. echo $File 
  21. done 
  22. echo "直接指定迴圈內容" 
  23. for i in f1 f2 f3 ;do 
  24. echo $i 
  25. done 
  26. echo 
  27. echo "C 文法for 迴圈:" 
  28. for (( i=0; i<10; i++)); do 
  29. echo $i 
  30. done 
--------------------------------------------------------------------------------------------------------- shell中for迴圈用法shell文法好麻煩的,一個迴圈都弄了一會 ,找了幾個不同的方法來實現輸出1-100間可以被3整除的數1.用(()) 
  1. #!/bin/bash 
  2. clear 
  3. for((i=1;i<100;i++)) 
  4. for 
  5. do 
  6. if((i%3==0)) 
  7. then 
  8. echo $i 
  9. continue 
  10. fi 
  11. done 
2.使用`seq 100` 
  1. #!/bin/bash 
  2. clear 
  3.  
  4. for i in `seq 100` 
  5. do 
  6. if((i%3==0)) 
  7. then 
  8. echo $i 
  9. continue 
  10. fi 
  11. done 
3.使用while 
  1. #!/bin/bash 
  2. clear 
  3.  
  4. i=1 
  5. while(($i<100)) 
  6. do 
  7. if(($i%3==0)) 
  8. then 
  9. echo $i 
  10. fi 
  11. i=$(($i+1)) 
  12. done 
   --------------------------------------------------------------------------------------------------------在shell用for迴圈做數字遞增的時候發現問題,特列出shell下for迴圈的幾種方法: 1.  
  1. for i in `seq 1 1000000`;do 
  2.  
  3. echo $i 
  4.  
  5. done 
用seq 1 10000000做遞增,之前用這種方法的時候沒遇到問題,因為之前的i根本就沒用到百萬(1000000),因為項目需要我這個數字遠大於百萬,發現用seq 數值到 1000000時轉換為1e+06,根本無法作為數字進行其他運算,或者將$i有效、正確的取用,遂求其他方法解決,如下 2.  
  1. for((i=1;i<10000000;i++));do 
  2.  
  3. echo $i 
  4.  
  5. done 
3. 
  1. i=1 
  2.  
  3. while(($i<10000000));do 
  4.  
  5. echo $i 
  6.  
  7. i=`expr $i + 1` 
  8.  
  9. done 
因為本方法調用expr故運行速度會比第1,第2種慢不少不過可稍作改進,將i=`expr $i + 1`改為i=$(($i+1))即可稍作速度的提升,不過具體得看相應shell環境是否支援 4. 
  1. for i in {1..10000000;do 
  2.  
  3. echo $i 
  4.  
  5. done 
其實選用哪種方法具體還是得由相應的shell環境的支援,達到預期的效果,再考慮速度方面的問題。  [[email protected] mnt]# ll-rw-r--r--  1 root root       0 Mar 28 14:24 test.20130326-rw-r--r--  1 root root       0 Mar 28 14:24 test.20130327-rw-r--r--  1 root root       0 Mar 28 14:24 test.20130328-rw-r--r--  1 root root       0 Mar 28 14:24 test.20130329  
  1. #!/bin/bash 
  2. D=`date +%Y%m%d` 
  3. for A in `ls | grep $D` 
  4. do 
  5. echo "$A" 
[[email protected] mnt]# ./aa.sh test.20130328done

shell編程:for 迴圈

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.