-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to update top-level domains
This adds a simple shell script to update the tld.go constant with the latest contents of https://data.iana.org/TLD/tlds-alpha-by-domain.txt
- Loading branch information
Showing
2 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eu | ||
|
||
TLD_URL=https://data.iana.org/TLD/tlds-alpha-by-domain.txt | ||
TLD="$(curl -fsSL https://data.iana.org/TLD/tlds-alpha-by-domain.txt | grep -v '^#')" | ||
|
||
cat > tld.go << EOF | ||
// Copyright 2020 Walter Scheper <[email protected]> | ||
// | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
package rapid | ||
import "strings" | ||
// sourced from https://data.iana.org/TLD/tlds-alpha-by-domain.txt | ||
// Version $(date +%Y%m%d00), Last Updated $(date --utc) | ||
const tldsByAlpha = \` | ||
${TLD} | ||
\` | ||
var tlds = strings.Split(strings.TrimSpace(tldsByAlpha), "\n") | ||
EOF |