Execute a system command: Difference between revisions

Line 289:
 
=={{header|Lua}}==
<lang lua>
-- just executing the command
os.execute("ls")
 
-- to execute and capture the output, use io.popen
local f = io.popen("ls") -- store the output in a "file"
print( f:read("*a") ) -- print out the "file"'s content
</lang>
 
=={{header|MAXScript}}==
Anonymous user