Skip to content

Instantly share code, notes, and snippets.

View kevmul's full-sized avatar

Kevin Mulholland kevmul

View GitHub Profile
@Zbizu
Zbizu / getOS.lua
Last active July 26, 2024 10:08
operating system (OS) detection in Lua
function getOS()
-- ask LuaJIT first
if jit then
return jit.os
end
-- Unix, Linux variants
local fh,err = assert(io.popen("uname -o 2>/dev/null","r"))
if fh then
osname = fh:read()