mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
Also rename success key in table to be "ok", so that it is consistent with process.exec.
7 lines
No EOL
157 B
Lua
7 lines
No EOL
157 B
Lua
local process = require("@lune/process")
|
|
|
|
local a = process.spawn("echo", {"hello"})
|
|
|
|
print(a)
|
|
print(buffer.tostring(a.stdout:readToEnd()))
|
|
print(a.status()) |