Using perl to generate the percent text. "bc" isn't available on TrueNAS SCALE. (#24)

This commit is contained in:
Kenneth Ballard 2023-08-21 11:10:01 -05:00 committed by GitHub
parent 8a76414b43
commit b550a57615
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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