一个查询ip归属地的shell脚本

发布时间:2020-02-02编辑:脚本学堂
为大家提供一段shell脚本,用于查询IP地址的归属地,即查询IP所在区域的代码,有需要的朋友参考下。

这里分享的这段shell/ target=_blank class=infotextkey>shell脚本,用于查询IP地址的归属地,即地理位置,且修复了在linux下出现中文乱码的问题。

代码:

复制代码 代码示例:
#!/bin/bash
#Purpose: 查找ip地址所在地
#filename: viewIP.sh
ipp (){
exec < $1
while read a
do
sring=`curl -s "http://ip138.com/ips138.asp?ip=${a}&action=2"| iconv -f gb2312 -t utf-8|grep '<ul class="ul1"><li>' | awk -F '[<> ]+' '{print substr($7
,7)}'`
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"| iconv -f gb2312 -t utf-8 |grep '<ul class="ul1"><li>' | awk -F '[<> ]+' '{print substr($7,7)}'`
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