以下函数将返回什么?好的 atom 还是 Cmd?
function_test() ->
Cmd = os:cmd("ls"),
io:format("The result of ls is:~p~n", [Cmd]).
如果它返回正常,那么在仍然使用 io:format 的同时应该如何改写为返回 Cmd?
以下函数将返回什么?好的 atom 还是 Cmd?
function_test() ->
Cmd = os:cmd("ls"),
io:format("The result of ls is:~p~n", [Cmd]).
如果它返回正常,那么在仍然使用 io:format 的同时应该如何改写为返回 Cmd?