Update storage-test.sh

This commit is contained in:
2025-05-04 10:23:46 -05:00
parent 05aace9993
commit c9f609746c

View File

@@ -106,11 +106,11 @@ ChosenPartition=""
if [ "$1" = "" ]; then if [ "$1" = "" ]; then
echo echo
Print_Style "Select a drive to test from:" "$YELLOW" Print_Style "Select a drive to test from:" "$YELLOW"
df=0; drive_sel=() df=0; declare -A drive_sel
echo "$(/bin/df -kTh | grep ext4)" | while IFS= read -r line ; do echo "$(/bin/df -kTh | grep ext4)" | while IFS= read -r line ; do
((df++)) ((df++))
path=$(echo $line | cut -d'%' -f2) path=$(echo $line | cut -d'%' -f2)
drive_sel+=("${path// }") drive_sel[$df]=${path// }
Print_Style "$df) ${path// }" "$CYAN" Print_Style "$df) ${path// }" "$CYAN"
done done
echo echo
@@ -118,9 +118,9 @@ if [ "$1" = "" ]; then
echo echo
echo ${drive_sel[@]} echo ${drive_sel[@]}
# echo "cd ${drive_sel[1]}" echo "cd ${drive_sel[1]}"
# echo "cd ${drive_sel[2]}" echo "cd ${drive_sel[2]}"
# echo "cd ${drive_sel[3]}" echo "cd ${drive_sel[3]}"
exit 0 exit 0
cd \ cd \
else else