mirror of
https://github.com/lord-alfred/ipranges.git
synced 2026-03-22 03:07:49 +00:00
* [main-] add pingdom and statuscake ips and downloaders * Improved consistency with the original style * Typo in README --------- Co-authored-by: Lord Alfred <2259979+lord-alfred@users.noreply.github.com>
11 lines
244 B
Bash
11 lines
244 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
# get ranges from statuscake
|
|
curl -s "https://app.statuscake.com/Workfloor/Locations.php?format=txt" > /tmp/statuscake-ipv4.txt
|
|
|
|
# sort & uniq
|
|
sort -V /tmp/statuscake-ipv4.txt | uniq > statuscake/ipv4.txt
|