shell脚本使用curl批量解析号码归属地

发布时间:2019-08-17编辑:脚本学堂
分享一例shell脚本,借助curl来批量解析手机号码的归属地,功能设计的不错,用来学习shell编程更不错,感兴趣的朋友参考下。

本节内容:
一例使用curl批量解析号码归属地的shell/ target=_blank class=infotextkey>shell脚本代码。

例子:
 

复制代码 代码示例:
#!/bin/bash
# File Name: area.sh
# Created Time: 2013年07月03日 星期三 19时57分00秒
# 号码归属地解析 www.jb200.com
# 格式:号码前七位+**** 归属地:省 市
#----------------------
telno_file=roam_telno
cat ${telno_file} |while read telno
do
    #只送号段过去
    telno_hd=`echo $telno |cut -c 1-7`
    show_telno=${telno_hd}****
    re=`curl -s wap.ip138.com/sim_search.asp?mobile=$telno_hd|sed -n '15p'|sed 's#<br/>##g'`
    echo "${show_telno} $re"  >>$telno_file_y
done