查询IP地址归属地shell 小脚本

再某一网站找安卓游戏时,使用站内搜索;点击搜索之后竟然跳到百度 使用site:www.xxx.com 方式搜索,很偷懒,但是很聪明,

那我们就用IP138来做IP地址查询的库吧

  
  
  
  
  1. #!/bin/bash    
  2. ipp (){    
  3. exec < $1    
  4. while read a    
  5. do    
  6. sring=`curl -s  "http://ip138.com/ips138.asp?ip=${a}&action=2" |grep '<ul class="ul1"><li>' |awk -F'[><]+' '{    
  7. print $5}'`    
  8. echo $a $sring    
  9. done    
  10. }    
  11. case $1 in    
  12. -f)    
  13.         shift    
  14.         ipp $1    
  15. ;;    
  16. -i)    
  17.         shift    
  18.         sring=`curl -s  "http://ip138.com/ips138.asp?ip=${1}&action=2" |grep '<ul class="ul1"><li>' |awk -F'[    
  19. ><]+' '{print $5}'`    
  20.         echo $1 $sring    
  21. ;;    
  22. *)    
  23.         echo "[Help]    
  24.         $0 need -f or -i    
  25.         -f ------- argument is a file    
  26.         -i ------- argument is a IP    
  27. [For example]:    
  28.         $0 -f filename    
  29.         $0 -i ipadress    
  30.         "    
  31. ;;    
  32. esac 

 

你可能感兴趣的:(shell,IP,脚本)