I am trying to work on Lua file handling. I am able to open (read), write and close the file via:
local session_debug = io.open("/root/session_debug.txt", "a")
session_debug:write("Some text\n")
session_debug:close()
How can I find the timestamp of when the file was last modified?
stat -f %m
. – Recumbent