I am attempting to find the percentage:
Here's what I have and I can't seem to get it to work...
tpp=$(lspv $disk | grep "TOTAL PPs" | awk '{print $3}')
fpp=$(lspv $disk | grep "FREE PPs" | awk '{print $3}')
pau=$((( $fpp / $tpp ) * 100 ))
I can't seem to get the correct answer...
any suggestions would be appreciated..
Here's what I have and I can't seem to get it to work...
tpp=$(lspv $disk | grep "TOTAL PPs" | awk '{print $3}')
fpp=$(lspv $disk | grep "FREE PPs" | awk '{print $3}')
pau=$((( $fpp / $tpp ) * 100 ))
I can't seem to get the correct answer...
any suggestions would be appreciated..