mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-13 10:34:53 +00:00
17 lines
216 B
Lua
Executable File
17 lines
216 B
Lua
Executable File
#!/usr/bin/lua
|
|
|
|
p = {}
|
|
f = io.open("/lib/apk/db/installed")
|
|
|
|
for line in f:lines() do
|
|
if line == "" then
|
|
print(p.P, p.L, p.c)
|
|
p = {}
|
|
else
|
|
k, v = line:match("(%a):(.*)")
|
|
if k then
|
|
p[k] = v
|
|
end
|
|
end
|
|
end
|