deblan-report/helpers/smart

11 lines
119 B
Plaintext
Raw Normal View History

2019-06-12 11:32:52 +02:00
#!/bin/sh
get_smart() {
smartctl -H "$1"
}
2020-12-27 21:43:51 +01:00
get_smart_status() {
smartctl -H "$1" 2>/dev/null >/dev/null
echo $?
}