I want to execute a program through my Elixir code. What is the method to call a shell command to a given string? Is there anything which isn\'t platform specific?
You can have a look in the Erlang os Module. E.g. cmd(Command) -> string() should be what you are looking for.
cmd(Command) -> string()