1. 程式人生 > >查詢IP地址歸屬地shell 小指令碼

查詢IP地址歸屬地shell 小指令碼

再某一網站找安卓遊戲時,使用站內搜尋;點選搜尋之後竟然跳到百度  使用site:www.xxx.com    方式搜尋,很偷懶,但是很聰明,

那我們就用IP138來做IP地址查詢的庫吧

#!/bin/bash
ipp (){
exec < $1
while read a
do
sring=`curl -s  "http://ip138.com/ips138.asp?ip=${a}&action=2" |grep '<ul class="ul1"><li>' |awk -F'[><]+' '{
print $5}'`
echo $a $sring
done
}
case $1 in
-f)
        shift
        ipp $1
;;
-i)
        shift
        sring=`curl -s  "http://ip138.com/ips138.asp?ip=${1}&action=2" |grep '<ul class="ul1"><li>' |awk -F'[
><]+' '{print $5}'`
        echo $1 $sring
;;
*)
        echo "[Help]
        $0 need -f or -i
        -f ------- argument is a file
        -i ------- argument is a IP
[For example]:
        $0 -f filename
        $0 -i ipadress
        "
;;
esac