mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
19 lines
748 B
Plaintext
19 lines
748 B
Plaintext
_ _ ____ _
|
|
___| | | | _ \| |
|
|
/ __| | | | |_) | |
|
|
| (__| |_| | _ <| |___
|
|
\___|\___/|_| \_\_____|
|
|
|
|
Perl
|
|
|
|
Perl's a great script language, not the least for quick prototyping. Curl is
|
|
elegantly used from within it. You can either invoke external curl command
|
|
line or use the curl interface.
|
|
|
|
Georg Horn's Perl interface to curl is available in the Curl_easy/
|
|
subdirectory. Using the Curl::easy module is just straightforward and
|
|
works much like using libcurl in a C programm, so please refer to the
|
|
documentation of libcurl. Have a look at test.pl to get an idea of how
|
|
to start.
|
|
|