-
Notifications
You must be signed in to change notification settings - Fork 112
external_command
wpferguson edited this page Jun 14, 2020
·
1 revision
external_command
pass a command to the operating system for execution and return the result
local dsys = require "lib/dtutils.system"
local result = dsys.external_command(command)
command - string - a string containing the command and arguments to be passed to the operating system for execution.
external_command passes a command to the operating system for execution and returns the results.
result - number = the return value signalling success or failure.