Authors: Serge Aleynikov (saleyn@gmail.com).
command/1 | |
command/2 | |
command/3 | |
normalpath/1 | Return a path where the use of ".." to indicate parent directory has been resolved. |
realpath/1 | Return a canonicalized pathname, having resolved symlinks to their destination. |
status/1 |
command(Cmd :: string()) -> {integer(), list()}
command(Cmd :: string(), Fun :: list() | undefined | fun((list(), any()) -> any())) -> {integer(), any()}
command(Cmd :: string(), Opt :: list(), Fun :: undefined | fun((list(), any()) -> any())) -> {integer(), any()}
normalpath(S :: list()) -> string()
Return a path where the use of ".." to indicate parent directory has been resolved. Currently does not accept relative paths.
realpath(Path :: string()) -> string()
Return a canonicalized pathname, having resolved symlinks to their destination. Modelled on realpath(3).
status(Status :: integer()) -> {status, ExitStatus :: integer()} | {signal, Singnal :: integer(), Core :: boolean()}
Generated by EDoc