[https://github.com/tilkinsc/LuaConsole] una CLI de nueva generación, multiplataforma [Lua-5.1.x, LuaJIT-2.0, Lua-5.2.x, Lua-5.3.x, Lua-5.4.x], creada para reemplazar la CLI de PUC-Lua y LuaJIT
Para obtener más información, visite el sitio web de LuaConsole Github y el sitio web de LuaConsole Wiki!
- Sea una mejor aplicación CLI que PUC-Lua/LuaJIT
- Soporta todo lo compatible con PUC-Lua y LuaJIT
- Evite el código confuso y desordenado
- Ser dependiente e independiente de CLI
- Multiplataforma: Linux, Windows, Mac (no oficial)
Windows/Unix Build Instructions
LuaDist Support Windows, Linux, MacOS
# Help command
luaw --help /? -?
# REPL Mode
luaw
luaw -p
# From the command
luaw res/testing.lua -Dtest=5 -n a b c
luaw -lres/testing.lua -Dtest=5 -n a b c
luaw -Dtest=5 -n a b c - < res/testing.lua
# With Shebang enhancements found below
res/testing.lua -Dtest=5 -n a b c
# Using cat
cat res/testing.lua | luaw -Dtest=5 -n a b c -
# From inside Lua
luaw -e "dofile('res/testing.lua')" -Dtest=5 -n a b c
luaw -e "dofile('testing.lua')" -s res -Dtest=5 -n a b c
# stdin
luaw -
dofile('res/testing.lua')
<Ctrl + d>
<Enter>
REM Help command
luaw --help /? -?
REM REPL Mode
luaw
luaw -p
REM From the command
luaw res/testing.lua -Dtest=5 -n a b c
luaw -lres/testing.lua -Dtest=5 -n a b c
luaw -Dtest=5 -n a b c - < res/testing.lua
REM With Windows Registry enhancements found below
res\testing.lua -Dtest=5 -n a b c
res\testing -Dtest=5 -n a b c
REM Using type
type res\testing.lua | luaw -Dtest=5 -n a b c -
REM From inside Lua
luaw -e "dofile('res/testing.lua')" -Dtest=5 -n a b c
luaw -e "dofile('testing.lua')" -s res -Dtest=5 -n a b c
REM stdin
luaw -
dofile('res/testing.lua')
<Ctrl + z>
<Enter>
Thanks goes to these wonderful people (emoji key):
DarkWiiPlayer 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!