local sf = string.format --~I hate typing string.format
local function run_cmd(cmd, param_string)
command_str = sf("%s %s", cmd, param_string or "")
print("Running:",command_str)
local result = os.execute(command_str)
return result
end
print("Result: ", run_cmd("echo", "Hello...