From 49340b067e2b5d93396f67ab64c9f7ace7bc52d1 Mon Sep 17 00:00:00 2001 From: Keith Nash Date: Sun, 19 Mar 2017 10:28:31 -0500 Subject: [PATCH] Original submission --- get_hdd_temp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_hdd_temp.sh b/get_hdd_temp.sh index fb31d70..cc4998f 100644 --- a/get_hdd_temp.sh +++ b/get_hdd_temp.sh @@ -45,5 +45,5 @@ for drive in $drives; do if [ -z "$brand" ]; then brand=$(/usr/local/sbin/smartctl -i /dev/${drive} | grep "Device Model" | awk '{print $3, $4, $5}') fi - printf "%5.5s: %3.3sC %s %s %s\n" "$drive" "$temp" "$brand" "$serial" + printf "%5.5s: %3.3sC %s %s\n" "$drive" "$temp" "$brand" "$serial" done