You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
-- environment
|
|
os.environ
|
|
os.setenv(name, value, overwrite)
|
|
os.unsetenv(name)
|
|
|
|
-- miscellaneous
|
|
os.sleep(seconds)
|
|
|
|
-- file system
|
|
os.dir
|
|
file = os.file
|
|
|
|
-- process control
|
|
pid = os.spawn(filename, {args={}, env={}, stdin=io_file, stdout=io_file, stderr=io_file})
|
|
exitcode = os.wait(pid)
|