Skip to content

Commit

Permalink
Update parked terms
Browse files Browse the repository at this point in the history
  • Loading branch information
jarelllama authored Mar 28, 2024
1 parent 40e8873 commit 9753233
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions config/parked_terms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ domain is parked
domain may be for sale
domain parked
domain parking
domain name may be listed for sale
error code: 1001
get this domain
index of /
Expand All @@ -29,3 +30,6 @@ temporarily parked
this account has been suspended
url=/cgi-sys/defaultwebpage.cgi
use this domain
to purchase, call buydomains.com
Hosting has registered
If you're the <strong>site owner
4 changes: 2 additions & 2 deletions data/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ function format {
case "$1" in
data/dead_domains.txt) # Remove whitespaces, empty lines and duplicates
sed 's/ //g; /^$/d' "$1" | awk '!seen[$0]++' > "${1}.tmp" && mv "${1}.tmp" "$1" ;;
config/parked_terms.txt) # Remove empty lines, sort and remove duplicates
sed '/^$/d' "$1" | sort -u -o "$1" ;;
config/parked_terms.txt) # Remove empty lines, convert to lowercase, sort and remove duplicates
sed '/^$/d' "$1" | tr '[:upper:]' '[:lower:]' | sort -u > "${1}.tmp" && mv "${1}.tmp" "$1" ;;
*.txt|*.tmp) # Remove whitespaces, empty lines, sort and remove duplicates
sed 's/ //g; /^$/d' "$1" | sort -u -o "$1" ;;
esac
Expand Down

0 comments on commit 9753233

Please sign in to comment.