Getting the Unix Time

How can I get the current Unix time from a script? Like this:

2 Likes
local unixTime = os.time()

That returns the seconds since the Unix Epoch and you can format that time using os.date(). I would highly recommend reading the OS API Reference.

7 Likes