Sortix cisortix manual
This manual documents Sortix cisortix. You can instead view this document in the latest official manual.
LUA(1) | General Commands Manual | LUA(1) |
NAME
lua - Lua interpreterSYNOPSIS
lua [ options ] [ script [ args ] ]DESCRIPTION
lua is the standalone Lua interpreter. It loads and executes Lua programs, either in textual source form or in precompiled binary form. (Precompiled binaries are output by luac, the Lua compiler.) lua can be used as a batch interpreter and also interactively.OPTIONS
- -e stat
- execute statement stat.
- -i
- enter interactive mode after executing script.
- -l name
- execute the equivalent of name=require('name') before executing script.
- -v
- show version information.
- -E
- ignore environment variables.
- --
- stop handling options.
- -
- stop handling options and execute the standard input as a file.
SEE ALSO
luac(1)DIAGNOSTICS
Error messages should be self explanatory.AUTHORS
R. Ierusalimschy, L. H. de Figueiredo, W. Celes$Date: 2016/10/17 15:43:50 $ |