习惯性的喜欢查询ip地址所在地SHELL#!/bin/sh #查询ip所在地 #查询访问地址,去除重复地址 cat /var/log/httpd/access_log | awk '{print $1}' | awk '!a[$0]++' >ip.txt #用法:cat ip.txt | ./ip.sh 或者 ./ip.sh 8.8.8.8 ips=$1 get=`curl -s
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号