very useless code cleanup

This commit is contained in:
bgkillas 2022-03-17 05:21:42 +00:00 committed by GitHub
parent ccd5d9f526
commit e4fecc6733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2710,7 +2710,7 @@ get_memory() {
pages_wired="$(vm_stat | awk '/ wired/ { print $4 }')"
pages_compressed="$(vm_stat | awk '/ occupied/ { printf $5 }')"
pages_compressed="${pages_compressed:-0}"
mem_used="$(((${pages_app} + ${pages_wired//.} + ${pages_compressed//.}) * hw_pagesize / 1024 / 1024))"
mem_used="$(((pages_app + ${pages_wired//.} + ${pages_compressed//.}) * hw_pagesize / 1024 / 1024))"
;;
"BSD" | "MINIX")
@ -3904,12 +3904,12 @@ get_local_ip() {
}
get_public_ip() {
if [[ ! -n "$public_ip_host" ]] && type -p dig >/dev/null; then
if [[ -z "$public_ip_host" ]] && type -p dig >/dev/null; then
public_ip="$(dig +time=1 +tries=1 +short myip.opendns.com @resolver1.opendns.com)"
[[ "$public_ip" =~ ^\; ]] && unset public_ip
fi
if [[ ! -n "$public_ip_host" ]] && [[ -z "$public_ip" ]] && type -p drill >/dev/null; then
if [[ -z "$public_ip_host" ]] && [[ -z "$public_ip" ]] && type -p drill >/dev/null; then
public_ip="$(drill myip.opendns.com @resolver1.opendns.com | \
awk '/^myip\./ && $3 == "IN" {print $5}')"
fi