mirror of
https://github.com/TangentFoxy/.lua-files.git
synced 2024-11-20 21:34:23 +00:00
12 lines
326 B
Lua
12 lines
326 B
Lua
|
#!/usr/bin/env luajit
|
||
|
|
||
|
for key, value in pairs(arg) do
|
||
|
print(key, value)
|
||
|
-- -n to -1 is FIRST the interpreter path and THEN variables passed to it in order
|
||
|
-- 0 is the path to the file being executed
|
||
|
-- 1+ are arguments.
|
||
|
-- powershell handles quotes, cmd does not even pass arguments
|
||
|
end
|
||
|
|
||
|
-- os.execute("sleep 5")
|