一道實用Linux營運問題的9種Shell解答方法

來源:互聯網
上載者:User

來源:老男孩的linux部落格  作者:老男孩

問題為:
4)已知:/etc/hosts的內容為
192.168.1.11  oldboy11.etiantian.org
192.168.1.21  oldboy21.etiantian.org
192.168.1.31  oldboy31.etiantian.org

#192.168.1.111  oldboy111.etiantian.org
請用shell指令碼實現,怎麼才能在輸入IP後找到/etc/hosts裡對應的唯一的hostname?
解答:
法1)指令碼過濾法     # cat judgehost.sh  

  1. #!/bin/bash  
  2. echo "please input ip address:" 
  3. read ip  
  4. [ -n "`grep "$ip " /etc/hosts`" ] && \  #注意前面的過濾條件結尾帶有空格。  
  5. echo "The hostname is: `grep "$ip " /etc/hosts |awk '{print $2}'`" || \  
  6. echo "The ip is invalid" 

 提示:
1)這是一個grep過濾加條件判斷的實現文法:
2)條件判斷文法為[ -n "ddd" ] && echo 1 || echo 0
3)[ -n "`grep "$ip " /etc/hosts`" ] && \  #注意前面的過濾條件結尾帶有空格。這裡啊,是為了排除下面的重複情況
 192.168.1.11  oldboy11.etiantian.org
 192.168.1.111  oldboy111.etiantian.org
----------------我是每種方法分隔字元---------------
法2)指令碼精確匹配法:

  1. #!/bin/bash  
  2. #author oldboy  
  3. #qq 31333741  
  4. #judge input  
  5. if [ $# -ne 1 ]  
  6.   then 
  7.     echo "input error!" 
  8.     exit 1  
  9. fi  
  10.  
  11. flag=0  
  12. exec < /etc/hosts  
  13. while read line  
  14. do  
  15.  if [ "$1" = "`echo $line|awk '{print $1}'`" ]  
  16.    then 
  17.        flag=1  
  18.        echo "the $1 's hostname is `echo $line|awk '{print $2}'`"   
  19.        break;  
  20.  fi  
  21. done   
  22. [ $flag -eq 0 ] && echo " sorrry,not find $1 's hostname!" 
  23.  

提示:此題,請大家學習while的用法及設定flag的思路。

執行結果:
# sh oldboy.sh 192.168.1.11
the 192.168.1.11 's hostname is oldboy11.etiantian.org
# sh oldboy.sh 192.168.1.21
the 192.168.1.21 's hostname is oldboy21.etiantian.org
# sh oldboy.sh 192.168.1.311
 sorrry,not find 192.168.1.311 's hostname!
----------------我是每種方法分隔字元---------------
 

特別提示:下面的方法中,老男孩老師大量的使用了awk的不同方法來實現同樣的功能,來告訴大家,awk是很強大的, 希望同學們能按照老師的教學要求精通之。

法3)awk精確匹配:
準備:
# tail -4 /etc/hosts
192.168.1.11  oldboy11.etiantian.org
192.168.1.111  oldboy111.etiantian.org
192.168.1.21  oldboy21.etiantian.org
192.168.1.31  oldboy31.etiantian.org
指令碼:

  1. [root@old_boy scripts]# cat awkhost1.sh   
  2. awk 'BEGIN {a="'$1'"} {if($1==a) print $2; }' /etc/hosts  

執行結果:
# sh awkhost1.sh 192.168.1.21
oldboy21.etiantian.org
# sh awkhost1.sh 192.168.1.31
oldboy31.etiantian.org
# sh awkhost1.sh 192.168.1.11
oldboy11.etiantian.org
提示:注意a="'$1'"的用法,$1為命令列傳參。awk程式中調用系統變數的方法a="'$1'"。
----------------我是每種方法分隔字元---------------
法4)awk精確匹配法

  1. [root@old_boy scripts]# cat awkhost2.sh   
  2. awk '{if($1=="'$1'") print $2}' /etc/hosts  

執行結果:
# awkhost2.sh 192.168.1.11
oldboy11.etiantian.org
# awkhost2.sh 192.168.1.21
oldboy21.etiantian.org
# awkhost2.sh 192.168.1.311
----------------我是每種方法分隔字元---------------
法5)awk過濾法

  1. # cat awkhost4.sh   
  2. awk '/'"${1} "'/''{print $2}' /etc/hosts  
  3. 執行結果:  
  4. # awkhost4.sh 192.168.1.21  
  5. oldboy21.etiantian.org  
  6. # awkhost4.sh 192.168.1.11  
  7. oldboy11.etiantian.org  
  8. # awkhost4.sh 192.168.1.31  
  9. oldboy31.etiantian.org  
  10. 提示:除了文法外,這道題有個學問,就是過濾時傳參結尾要帶個空格,這樣才能過濾重複IP的情況  
  11. 如:  
  12.  192.168.1.11  oldboy11.etiantian.org  
  13.  192.168.1.111  oldboy111.etiantian.org 

----------------我是每種方法分隔字元---------------
法6)awk過濾法

  1. # cat awkhost5.sh   
  2. awk '{if($1~/'$1'/) print $2}'  /etc/hosts ##如果檔案第一列包含命令列第一個參數字元則列印第二列  
  3. 執行結果:  
  4. # awkhost5.sh 192.168.1.31  
  5. oldboy31.etiantian.org  
  6. # awkhost5.sh 192.168.1.11  
  7. oldboy11.etiantian.org  
  8. oldboy111.etiantian.org ------>這裡有bug了。  
  9. # awkhost5.sh 192.168.1.21  
  10. oldboy21.etiantian.org  
  11. 改進下來排除bug:  
  12. # cat awkhost5-1.sh   
  13. awk '{if($1~/'$1' /) print $2}'  /etc/hosts ==>用上面加空格的思路不對。  
  14. # cat awkhost5-1.sh   
  15. awk '{if($1~/'$1'$/) print $2}'  /etc/hosts #增加一個Regex$  
  16. 執行結果:  
  17. # awkhost5-1.sh 192.168.1.21  
  18. oldboy21.etiantian.org  
  19. # awkhost5-1.sh 192.168.1.11  
  20. oldboy11.etiantian.org  
  21. # awkhost5-1.sh 192.168.1.31  
  22. oldboy31.etiantian.org 

----------------我是每種方法分隔字元---------------
法7)awk -v精確匹配法
 

  1. 命令列測試:  
  2. # awk -v p=192.168.1.21 '$1 == p{print $2}' /etc/hosts  
  3. oldboy21.etiantian.org  
  4. # awk -v p=192.168.1.11 '$1 == p{print $2}' /etc/hosts  
  5. oldboy11.etiantian.org  
  6. # awk -v p=192.168.1.11 '$1 == p {print $2}' /etc/hosts  
  7. oldboy11.etiantian.org  
  8. 實際指令碼: 
  9. # cat awkhost6.sh   
  10. #!/bin/bash  
  11. #p=$1  
  12. #awk -v p="$p" '$1 == p{print $2}' /etc/hosts  
  13. awk -v p="$1" '$1 == p{print $2}' /etc/hosts 

執行結果:
# sh  awkhost6.sh  192.168.1.11
oldboy11.etiantian.org
# sh  awkhost6.sh  192.168.1.21
oldboy21.etiantian.org
提示:
1)傳參非awk程式,因此寫法p="$1"
2)man awk
       -v var=val
       --assign var=val
              Assign the value val to the variable var, before execution of the program begins.   Such  vari-
              able values are available to the BEGIN block of an AWK program.
----------------我是每種方法分隔字元---------------
法8:精確匹配簡單的寫法

  1. # cat awkhost9.sh   
  2. awk  '$1 == "'$1'" {print $2}' /etc/hosts  
  3. 執行結果:  
  4. # sh awkhost9.sh  192.168.1.11  
  5. oldboy11.etiantian.org  
  6. # sh awkhost9.sh  192.168.1.21  
  7. oldboy21.etiantian.org  
  8. # sh awkhost9.sh  192.168.1.31  
  9. oldboy31.etiantian.org  
  10. 特別提示:這裡老男孩老師大量的使用了awk的不同方法來實現同樣的功能,很強大吧,  
  11. 希望同學們能按照老師的教學要求精通之。 

----------------我是每種方法分隔字元---------------
法9:學生的一個不成熟的實現法

  1. #!/bin/bash  
  2. b=/$PWD/wang.txt  
  3. echo -n "plase input ip : " 
  4. read a  
  5. if [ $a == "192.168.1.11" ]  
  6.         then 
  7. cat $b | grep $a | awk -F ' ' '{print $2}' 
  8.  
  9. elif [ $a  == "192.168.1.21" ]   
  10.         then 
  11. cat $b | grep $a | awk -F ' ' '{print $2}' 
  12.  
  13. elif [ $a  == "192.168.1.31" ]  
  14.         then 
  15. cat $b | grep $a | awk -F ' ' '{print $2}' 
  16.         else 
  17. echo "plase input the correct IP address " && exit 1  
  18. fi  
  19. 提示:大家看看問題在哪?指令碼不通用。  
  20.  

----------老男孩老師改進後 

  1. #!/bin/bash  
  2. #author oldboy  
  3. #qq 31333741  
  4. hosts_file="$PWD/oldboy.txt" 
  5. #judge file  
  6. [ ! -f $hosts_file ] && echo "no test file!" && exit 1  
  7. echo -n "plase input ip : " 
  8. read ip  
  9. #judge ip format  
  10. [ "${#a}" -lt 8 ] && [ "`echo $ip|sed 's/[0-9]//g'`" != "..." ] && \  
  11. echo "Plase input the correct IP address" && exit 1  
  12.  
  13. #start  
  14. result1=$(grep "$ip" $hosts_file|awk '{print $1}')  
  15. if [ "$ip" == "$result1" ]  
  16.   then   
  17.         grep "$ip" $hosts_file|awk '{print $2}' 
  18.         exit 0  
  19. else 
  20.         echo  "Not find the hostname of $ip" 
  21.         exit 1  
  22. fi  
  23. 提示:此法不可取,畫蛇添足了。  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.