#!/bin/bash -e
set -o pipefail

smartctl -s on -d ata -a $1 | grep -E '^194' | sed -re "s/.* +- +([0-9]+).*/\1/g"
