isLinux

Returns 1 (true) if operative system in use is GNU/LInux.

Syntax:
variable = isLinux

Example:
if isLinux then
    print("Wow, I'm running on a Linux box!!!")
else
    print("Hey folks, this is not a Tux PC")
end if