#!/bin/bash

DEVICE="/dev/md0"

TOTAL_DEVICES=$(mdadm -D "$DEVICE" | grep 'Total Devices' | cut -d':' -f 2 | tr -d ' ')

mdadm -D "$DEVICE" | tail -n "$TOTAL_DEVICES" | tr -s ' ' | cut -d' ' -f 6

# Example Output:
#
#   active
#   active
#   active
#   active
#   active
#

# TODO: Non ho realmente trovato nella documentazione le altre parole, penso siano "missing" e "failing" però boh