摘要: 数据抓取:wget -d 2 -c -k -r -np 'http://mobile.tool.la/sheng/'提取某html中的所有手机号码前缀,并按照省市存储到文本文件中for file in `find sheng -mindepth 3 -name 'index.html'`doprovince=`echo $file | awk -F '/' '{print $2}'`city=`echo $file | awk -F '/' '{print $3}'`#way=sheng/$prov 阅读全文