curl ist eine library ähnlich wget, die Anfragen an einen Webserver ausführt. cURL ist wesentlich leistungsfähiger als wget. Es ist im CPAN enthalten unter "WWW::Curl"
Homepage: http://curl.haxx.se
Lizenz: MIT/X. (Details siehe http://curl.haxx.se/docs/copyright.html). Die Software ist OpenSource, FreeSoftware. Auch für kommerzielle Projekte verwendbar.
Tipps & Tricks
Eine index-Datei holen: curl http://www.netscape.com/
Eine index-Datei als File speichern: curl -o thatpage.html http://www.netscape.com/
Ein README-file per ftp holen: curl ftp://ftp.funet.fi/README
- Ein Wort im Wörterbuch nachsehen: curl dict://dict.org/m:curl
Formular ausfüllen: curl -d "name=Rafael%20Sagula&phone=3320780" http://www.where.com/guest.cgi
- sinnvoll zum Testen beim Entwickeln von eigenen Formularen