function 类_根文件.读取文件(文件地址, 指定行)
local b
if 指定行 == nil or 指定行 == 0 then
b = "1"
else
b = 指定行
end
local a = io.popen("echo -nE \"$(su -c \"sed -n '" .. b .. " p' " .. 文件地址.. "\")\"")
local t = a:read("*all")
a:close()
return t
end
aa=类_根文件.读取文件("/data/data/sg.bigo.live/测试.txt", 1)
print(aa)