以下功能将返回什么? ok atom还是Cmd?
function_test() ->
Cmd = os:cmd("ls"),
io:format("The result of ls is:~p~n", [Cmd]).
如果它返回ok,那么在仍然使用io:format时如何重新定义它以返回Cmd?
答案 0 :(得分:10)
在Erlang中,返回函数中的最后一个表达式,在您的情况下,io:format
的结果为ok
。
要返回Cmd
,您只需将其作为函数中的最后一个表达式:
function_test() ->
Cmd = os:cmd("ls"),
io:format("The result of ls is:~p~n", [Cmd]),
Cmd.