Lua怎么获取shell执行错误时的信息

Shell正常输出信息是到标准输出的(stdout: 1),错误信息是到标准错误(stderr: 2),如果需要同时获得正常信息和错误信息就要把stderr重定向到stdout。

ls /Users/gdlocal/DOE/ 2>&1 

Lua获取输出shell执行信息

cmd = "ls /Users/gdlocal/DOE/ 2>&1"
fh = io.popen(cmd)
result = fh:read("*all")
fh:close()
print("shell exec result: " .. tostring(result))
  1. gdlocal下没文件夹时,输出是error信息,

sh-3.2$ lua ~/Desktop/test.lua
shell exec result: ls: /Users/gdlocal/DOE: No such file or directory

  1. DOE文件夹存在且下面有文件,输出是

shell exec result: test1
test2
test3

标准输出/标准错误/重定向信息可以参考:
linux的标准输入输出

你可能感兴趣的:(Lua)