replaced increment/decrement with _math function

This commit is contained in:
linux-insideDE 2018-05-15 14:38:29 +02:00 committed by GitHub
parent 3f0462b68b
commit 6a4aad1aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ dns_netcup_add() {
break;
fi
fi
i=$((i - 1))
i=$(_math "$i" - 1)
done
inc=""
i=1
@ -52,7 +52,7 @@ dns_netcup_add() {
inc="$inc$i,"
fi
fi
i=$((i + 1))
i=$(_math "$i" + 1)
done
tmp=$(echo "$fulldomain" | cut -d'.' -f$inc)
@ -85,7 +85,7 @@ dns_netcup_rm() {
break;
fi
fi
i=$((i - 1))
i=$(_math "$i" - 1)
done
inc=""
i=1
@ -101,7 +101,7 @@ dns_netcup_rm() {
inc="$inc$i,"
fi
fi
i=$((i + 1))
i=$(_math "$i" + 1)
done
tmp=$(echo "$fulldomain" | cut -d'.' -f$inc)
doma="$domain.$tld"