Sie fragen sich, welche Funktion das @
Zeichen hat? Hier ist ein Beispielbefehl:
curl -w "@curl-format.txt" -o /dev/null -s "http://wordpress.com/"
Hier sind mehr verwandte Hintergründe,
Sie fragen sich, welche Funktion das @
Zeichen hat? Hier ist ein Beispielbefehl:
curl -w "@curl-format.txt" -o /dev/null -s "http://wordpress.com/"
Hier sind mehr verwandte Hintergründe,
Antworten:
Es bedeutet nur, das Format aus der angegebenen Datei zu lesen.
aus dem Handbuch:
-w, --write-out <format> Defines what to display on stdout after a completed and successful operation. The format is a string that may contain plain text mixed with any number of variables. The string can be specified as "string", to get read from a particular file you specify it "@filename" and to tell curl to read the format from stdin you write "@-".
Die Verwendung von @ ist ziemlich gebräuchlich, curl verwendet es an mehreren Stellen, andere Befehle ebenfalls.