Remove dependence on perl

This commit is contained in:
Karol Kozłowski 2024-07-08 20:21:48 +02:00
parent 6087250290
commit b1bbda241f
No known key found for this signature in database
GPG Key ID: B54354144585F02B

View File

@ -69,7 +69,7 @@ function rebalance () {
fi
current_index="$((current_index + 1))"
progress_percent=$(perl -e "printf('%0.2f', ${current_index}*100/${file_count})")
progress_percent=$(printf '%0.2f' "$((${current_index}*10000/${file_count}))e-2")
color_echo "${Cyan}" "Progress -- Files: ${current_index}/${file_count} (${progress_percent}%)"
if [[ ! -f "${file_path}" ]]; then