Lines Matching refs:fh
200 local fh = io.popen(shcmd)
201 local output = fh:read("a")
203 fh:close()
224 local fh = io.open(file)
225 if fh == nil then
229 for nextline in fh:lines() do
292 io.close(fh)
305 local fh = io.open(file)
306 if fh == nil then
313 for nextline in fh:lines() do
321 io.close(fh)
398 local fh = files[tmpfile]
399 fh:seek("set")
400 return fh:read("a")
496 local fh = io.open(file)
497 if fh == nil then
522 for nextline in fh:lines() do
535 io.close(fh)
1383 local fh = io.open(target, "w+")
1384 if fh == nil then
1387 fh:write(read_file(v))
1388 fh:close()