Unverified Commit 6a4aad1a authored by linux-insideDE's avatar linux-insideDE Committed by GitHub
Browse files

replaced increment/decrement with _math function

parent 3f0462b6
...@@ -36,7 +36,7 @@ dns_netcup_add() { ...@@ -36,7 +36,7 @@ dns_netcup_add() {
break; break;
fi fi
fi fi
i=$((i - 1)) i=$(_math "$i" - 1)
done done
inc="" inc=""
i=1 i=1
...@@ -52,7 +52,7 @@ dns_netcup_add() { ...@@ -52,7 +52,7 @@ dns_netcup_add() {
inc="$inc$i," inc="$inc$i,"
fi fi
fi fi
i=$((i + 1)) i=$(_math "$i" + 1)
done done
tmp=$(echo "$fulldomain" | cut -d'.' -f$inc) tmp=$(echo "$fulldomain" | cut -d'.' -f$inc)
...@@ -85,7 +85,7 @@ dns_netcup_rm() { ...@@ -85,7 +85,7 @@ dns_netcup_rm() {
break; break;
fi fi
fi fi
i=$((i - 1)) i=$(_math "$i" - 1)
done done
inc="" inc=""
i=1 i=1
...@@ -101,7 +101,7 @@ dns_netcup_rm() { ...@@ -101,7 +101,7 @@ dns_netcup_rm() {
inc="$inc$i," inc="$inc$i,"
fi fi
fi fi
i=$((i + 1)) i=$(_math "$i" + 1)
done done
tmp=$(echo "$fulldomain" | cut -d'.' -f$inc) tmp=$(echo "$fulldomain" | cut -d'.' -f$inc)
doma="$domain.$tld" doma="$domain.$tld"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment