Hi, I am trying to run an external command from Julia using the run()
function, but I am stuck on how to handle error codes and exit codes of any particular command. Previous Julia version had a readall()
function, which isn’t available anymore.
Something like,
stdout,stderr = run(`some command`)
Although I do get the stacktrace
and error
printed on the console.(May be the default behaviour causes it to dump everything to STDOUT
)