Ich versuche nur, Elixir zu verwenden, um einen curl-Befehl mit einem bestimmten Format auszuführen.Ich kann den curl-Befehl nicht innerhalb von Elixir mit System.cmd ausführen
$ curl -w "@config/curl-format.txt" -o /dev/null -s "http://wordpress.com/"
0.004, 0.017, 0.000, 0.017, 0.000, 0.029, 0.029
Das Ausführen des Befehls direkt vom Terminal funktioniert einwandfrei.
Das ist, was ich versuche in Elixir zu tun:
args = ["-w config/curl-format.txt", "-o /dev/null", "-s", "http://wordpress.com"]
result = System.cmd("curl", args, [])
Aber ich bekomme:
{" config/curl-format.txt", 23}
Und nicht das gleiche Ergebnis wie oben.
Vielen Dank based dilbert Händler! –