aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hddtemp.lua7
1 files changed, 3 insertions, 4 deletions
diff --git a/hddtemp.lua b/hddtemp.lua
index a2557fa..366f40b 100644
--- a/hddtemp.lua
+++ b/hddtemp.lua
@@ -7,7 +7,7 @@
local tonumber = tonumber
local io = { popen = io.popen }
local setmetatable = setmetatable
-local string = { match = string.match }
+local string = { gmatch = string.gmatch }
-- }}}
@@ -25,9 +25,8 @@ local function worker(format, port)
local hdd_temp = {}
for line in f:lines() do
- local disk, temp = string.match(line, "|([%/%a%d]+)|.*|([%d]+)|[CF]+|")
-
- if disk ~= nil and temp ~= nil then
+ for disk, temp in string.gmatch(line, "|([%/%a%d]+)|.-|([%d]+)|[CF]+|")
+ do
hdd_temp["{"..disk.."}"] = tonumber(temp)
end
end