You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
327 B
20 lines
327 B
#!/bin/bash
|
|
|
|
|
|
# https://platform.openai.com/docs/gptbot
|
|
|
|
set -euo pipefail
|
|
set -x
|
|
|
|
|
|
# get from public ranges
|
|
curl -s https://openai.com/gptbot-ranges.txt > /tmp/openai.txt
|
|
|
|
# save ipv4
|
|
grep -v ':' /tmp/openai.txt > /tmp/openai-ipv4.txt
|
|
|
|
# ipv6 not provided
|
|
|
|
|
|
# sort & uniq
|
|
sort -h /tmp/openai-ipv4.txt | uniq > openai/ipv4.txt
|
|
|