Skip to content

批量查询IP地址归属代码

Published: at 10:28编辑该页面
#! /bin/bash

for ip in $@; do
	curl "http://ip-api.com/json/$ip?lang=zh-CN&fields=query,country,city,isp"
	echo -e ""
done

另存为 ip.sh,然后 chmod u+x ip.sh,使用时 ip.sh google.com 即可。

如果想显示更全的信息,删除 fields 字段就行了,具体参数参考Api 参数查询


上一篇
Git提交规范
下一篇
写给嘉嘉的信