Wer schon immer einmal mit Curl etwas testen wollte bekommt hier eine kleine Einleitung wie man damit umgeht. CURL steht für Client for URLs oder Curl URL Request Library und wird dafür genutzt auf Server Ebene Operationen durchzuführen.
Dahingehend operiert es auf der Kommandoebene also in der Konsole und unterstützt zahlreiche Protokolle.Möchte man beispielsweise via CURL eine Webseite mit GET erhalten wäre folgender Befehl notwendig
curl https://curl.haxx.se/
Die Analyse des Outputs zeigt auf eine beispielsweise folgenden Code
<a href="https://www.gitbook.com/book/bagder/everything-curl/details"> <img style="margin: 20px 20px 20px 20px;" align="right" width="200" height="262" border="0" src="https://github.com/bagder/everything-curl/raw/master/cover_small.jpg"></a> <p> This is a detailed and totally free book, available in ebook formats, <a href="https://www.gitbook.com/download/pdf/book/bagder/everything-curl">PDF</a> and <a href="https://ec.haxx.se/">online</a> that explains basically everything there is to know about curl, libcurl and the associated project. <p>
Das darin beschriebene Buch kann man sich nun beispielsweise mit einem
wget https://www.gitbook.com/download/pdf/book/bagder/everything-curl
auf den Rechner laden.
Natürlich kann man die angesprochene Ressource auf einfach via Click im Browser downloaden, dahingehend entsteht als kein eindringen.
Weitere Infos unter:
CURL Wikipedia: https://de.wikipedia.org/wiki/CURL
CURL HTTP Scripting https://curl.haxx.se/docs/httpscripting.html#HTTP Scripting
Everything CURL: https://www.gitbook.com/book/bagder/everything-curl/details
#CURL #LINUX #HTTP