#! /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 参数查询
#! /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 参数查询