本文共 127 字,大约阅读时间需要 1 分钟。
#!/bin/bash
for ip in `cat ip.txt`
do
curl http://www.ip.cn/index.php?ip=${ip}
done
转载于:https://blog.51cto.com/11075514/1869036