You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lsattr and perl is not installed on xigmanas platfform.
lsattr can be installed on xigmanas (login via ssh) by:
pkg install e2fsprogs
perl is only used in teh script to calc the percentage.
just replace line 72:
progress_percent=$(perl -e "printf('%0.2f', ${current_index}*100/${file_count})")
with
progress_percent=$((${current_index}*100/${file_count}))
The text was updated successfully, but these errors were encountered:
lsattr and perl is not installed on xigmanas platfform.
lsattr can be installed on xigmanas (login via ssh) by:
pkg install e2fsprogs
perl is only used in teh script to calc the percentage.
just replace line 72:
progress_percent=$(perl -e "printf('%0.2f', ${current_index}*100/${file_count})")
with
progress_percent=$((${current_index}*100/${file_count}))
The text was updated successfully, but these errors were encountered: