stilez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
dnsapi/dns_pleskxml.sh
|
|
@ -203,10 +203,10 @@ _valuecut() { |
|
|
|
printf '%s' "$3" | cut -d . -f "${1}-${2}" |
|
|
|
} |
|
|
|
|
|
|
|
# Counts '.' present in a domain name |
|
|
|
# Counts '.' present in a domain name or other string |
|
|
|
# $1 = domain name |
|
|
|
_countdots() { |
|
|
|
_value "$1" | tr -dc '.' | wc -c |
|
|
|
_value "$1" | tr -dc '.' | wc -c | sed 's/ //g' |
|
|
|
} |
|
|
|
|
|
|
|
# Cleans up an API response, splits it "one line per item in the response" and greps for a string that in the context, identifies "useful" lines |
|
|
|