dyok 发表于 2017-5-15 13:32:21

查询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 "
$0 need -f or -i
-f ------- argument is a file
-i ------- argument is a IP
:
$0 -f filename
$0 -i ipadress
"
;;
esac


  
页: [1]
查看完整版本: 查询IP地址归属地shell 小脚本