home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Online / Curl / README.curl < prev    next >
Text File  |  2000-06-20  |  25KB  |  705 lines

  1. LATEST VERSION
  2.  
  3.   You always find news about what's going on as well as the latest versions
  4.   from the curl web pages, located at:
  5.  
  6.         http://curl.haxx.se
  7.  
  8. SIMPLE USAGE
  9.  
  10.   Get the main page from netscape's web-server:
  11.  
  12.         curl http://www.netscape.com/
  13.  
  14.   Get the root README file from funet's ftp-server:
  15.  
  16.         curl ftp://ftp.funet.fi/README
  17.  
  18.   Get a gopher document from funet's gopher server:
  19.  
  20.         curl gopher://gopher.funet.fi
  21.  
  22.   Get a web page from a server using port 8000:
  23.  
  24.         curl http://www.weirdserver.com:8000/
  25.  
  26.   Get a list of the root directory of an FTP site:
  27.  
  28.         curl ftp://ftp.fts.frontec.se/
  29.  
  30.   Get the definition of curl from a dictionary:
  31.  
  32.         curl dict://dict.org/m:curl
  33.  
  34. DOWNLOAD TO A FILE
  35.  
  36.   Get a web page and store in a local file:
  37.  
  38.         curl -o thatpage.html http://www.netscape.com/
  39.  
  40.   Get a web page and store in a local file, make the local file get the name
  41.   of the remote document (if no file name part is specified in the URL, this
  42.   will fail):
  43.  
  44.         curl -O http://www.netscape.com/index.html
  45.  
  46. USING PASSWORDS
  47.  
  48.  FTP
  49.  
  50.    To ftp files using name+passwd, include them in the URL like:
  51.  
  52.         curl ftp://name:passwd@machine.domain:port/full/path/to/file
  53.  
  54.    or specify them with the -u flag like
  55.  
  56.         curl -u name:passwd ftp://machine.domain:port/full/path/to/file
  57.  
  58.  HTTP
  59.  
  60.    The HTTP URL doesn't support user and password in the URL string. Curl
  61.    does support that anyway to provide a ftp-style interface and thus you can
  62.    pick a file like:
  63.  
  64.         curl http://name:passwd@machine.domain/full/path/to/file
  65.  
  66.    or specify user and password separately like in
  67.  
  68.         curl -u name:passwd http://machine.domain/full/path/to/file
  69.  
  70.    NOTE! Since HTTP URLs don't support user and password, you can't use that
  71.    style when using Curl via a proxy. You _must_ use the -u style fetch
  72.    during such circumstances.
  73.  
  74.  HTTPS
  75.  
  76.    Probably most commonly used with private certificates, as explained below.
  77.  
  78.  GOPHER
  79.  
  80.    Curl features no password support for gopher.
  81.  
  82. PROXY
  83.  
  84.  Get an ftp file using a proxy named my-proxy that uses port 888:
  85.  
  86.         curl -x my-proxy:888 ftp://ftp.leachsite.com/README
  87.  
  88.  Get a file from a HTTP server that requires user and password, using the
  89.  same proxy as above:
  90.  
  91.         curl -u user:passwd -x my-proxy:888 http://www.get.this/
  92.  
  93.  Some proxies require special authentication. Specify by using -U as above:
  94.  
  95.         curl -U user:passwd -x my-proxy:888 http://www.get.this/
  96.  
  97.  See also the environment variables Curl support that offer further proxy
  98.  control.
  99.  
  100. RANGES
  101.  
  102.   With HTTP 1.1 byte-ranges were introduced. Using this, a client can request
  103.   to get only one or more subparts of a specified document. Curl supports
  104.   this with the -r flag.
  105.  
  106.   Get the first 100 bytes of a document:
  107.  
  108.         curl -r 0-99 http://www.get.this/
  109.  
  110.   Get the last 500 bytes of a document:
  111.  
  112.         curl -r -500 http://www.get.this/
  113.  
  114.   Curl also supports simple ranges for FTP files as well. Then you can only
  115.   specify start and stop position.
  116.  
  117.   Get the first 100 bytes of a document using FTP:
  118.  
  119.         curl -r 0-99 ftp://www.get.this/README  
  120.  
  121. UPLOADING
  122.  
  123.  FTP
  124.  
  125.   Upload all data on stdin to a specified ftp site:
  126.  
  127.         curl -t ftp://ftp.upload.com/myfile
  128.  
  129.   Upload data from a specified file, login with user and password:
  130.  
  131.         curl -T uploadfile -u user:passwd ftp://ftp.upload.com/myfile
  132.  
  133.   Upload a local file to the remote site, and use the local file name remote
  134.   too:
  135.  
  136.         curl -T uploadfile -u user:passwd ftp://ftp.upload.com/
  137.  
  138.   Upload a local file to get appended to the remote file using ftp:
  139.  
  140.         curl -T localfile -a ftp://ftp.upload.com/remotefile
  141.  
  142.   NOTE: Curl does not support ftp upload through a proxy! The reason for this
  143.   is simply that proxies are seldomly configured to allow this and that no
  144.   author has supplied code that makes it possible!
  145.  
  146.  HTTP
  147.  
  148.   Upload all data on stdin to a specified http site:
  149.  
  150.         curl -t http://www.upload.com/myfile
  151.  
  152.   Note that the http server must've been configured to accept PUT before this
  153.   can be done successfully.
  154.  
  155.   For other ways to do http data upload, see the POST section below.
  156.  
  157. VERBOSE / DEBUG
  158.  
  159.   If curl fails where it isn't supposed to, if the servers don't let you
  160.   in, if you can't understand the responses: use the -v flag to get VERBOSE
  161.   fetching. Curl will output lots of info and all data it sends and
  162.   receives in order to let the user see all client-server interaction.
  163.  
  164.         curl -v ftp://ftp.upload.com/
  165.  
  166. DETAILED INFORMATION
  167.  
  168.   Different protocols provide different ways of getting detailed information
  169.   about specific files/documents. To get curl to show detailed information
  170.   about a single file, you should use -I/--head option. It displays all
  171.   available info on a single file for HTTP and FTP. The HTTP information is a
  172.   lot more extensive.
  173.  
  174.   For HTTP, you can get the header information (the same as -I would show)
  175.   shown before the data by using -i/--include. Curl understands the
  176.   -D/--dump-header option when getting files from both FTP and HTTP, and it
  177.   will then store the headers in the specified file.
  178.  
  179.   Store the HTTP headers in a separate file:
  180.  
  181.         curl --dump-header headers.txt curl.haxx.se
  182.  
  183.   Note that headers stored in a separate file can be very useful at a later
  184.   time if you want curl to use cookies sent by the server. More about that in
  185.   the cookies section.
  186.  
  187. POST (HTTP)
  188.  
  189.   It's easy to post data using curl. This is done using the -d <data>
  190.   option.  The post data must be urlencoded.
  191.  
  192.   Post a simple "name" and "phone" guestbook.
  193.  
  194.         curl -d "name=Rafael%20Sagula&phone=3320780" \
  195.                 http://www.where.com/guest.cgi
  196.  
  197.   How to post a form with curl, lesson #1:
  198.  
  199.   Dig out all the <input> tags in the form that you want to fill in. (There's
  200.   a perl program called formfind.pl on the curl site that helps with this).
  201.  
  202.   If there's a "normal" post, you use -d to post. -d takes a full "post
  203.   string", which is in the format
  204.  
  205.         <variable1>=<data1>&<variable2>=<data2>&...
  206.  
  207.   The 'variable' names are the names set with "name=" in the <input> tags, and
  208.   the data is the contents you want to fill in for the inputs. The data *must*
  209.   be properly URL encoded. That means you replace space with + and that you
  210.   write weird letters with %XX where XX is the hexadecimal representation of
  211.   the letter's ASCII code.
  212.  
  213.   Example:
  214.  
  215.   (page located at http://www.formpost.com/getthis/
  216.  
  217.         <form action="post.cgi" method="post">
  218.         <input name=user size=10>
  219.         <input name=pass type=password size=10>
  220.         <input name=id type=hidden value="blablabla">
  221.         <input name=ding value="submit">
  222.         </form>
  223.  
  224.   We want to enter user 'foobar' with password '12345'.
  225.  
  226.   To post to this, you enter a curl command line like:
  227.  
  228.         curl -d "user=foobar&pass=12345&id=blablabla&dig=submit"  (continues)
  229.           http://www.formpost.com/getthis/post.cgi
  230.  
  231.  
  232.   While -d uses the application/x-www-form-urlencoded mime-type, generally
  233.   understood by CGI's and similar, curl also supports the more capable
  234.   multipart/form-data type. This latter type supports things like file upload.
  235.  
  236.   -F accepts parameters like -F "name=contents". If you want the contents to
  237.   be read from a file, use <@filename> as contents. When specifying a file,
  238.   you can also specify which content type the file is, by appending
  239.   ';type=<mime type>' to the file name. You can also post contents of several
  240.   files in one field. So that the field name 'coolfiles' can be sent three
  241.   files with different content types in a manner similar to:
  242.  
  243.         curl -F "coolfiles=@fil1.gif;type=image/gif,fil2.txt,fil3.html" \
  244.         http://www.post.com/postit.cgi
  245.  
  246.   If content-type is not specified, curl will try to guess from the extension
  247.   (it only knows a few), or use the previously specified type (from an earlier
  248.   file if several files are specified in a list) or finally using the default
  249.   type 'text/plain'.
  250.  
  251.   Emulate a fill-in form with -F. Let's say you fill in three fields in a
  252.   form. One field is a file name which to post, one field is your name and one
  253.   field is a file description. We want to post the file we have written named
  254.   "cooltext.txt". To let curl do the posting of this data instead of your
  255.   favourite browser, you have to check out the HTML of the form page to get to
  256.   know the names of the input fields. In our example, the input field names are
  257.   'file', 'yourname' and 'filedescription'.
  258.  
  259.         curl -F "file=@cooltext.txt" -F "yourname=Daniel" \
  260.              -F "filedescription=Cool text file with cool text inside" \
  261.              http://www.post.com/postit.cgi
  262.  
  263.   So, to send two files in one post you can do it in two ways:
  264.  
  265.   1. Send multiple files in a single "field" with a single field name:
  266.  
  267.         curl -F "pictures=@dog.gif,cat.gif" 
  268.  
  269.   2. Send two fields with two field names: 
  270.  
  271.         curl -F "docpicture=@dog.gif" -F "catpicture=@cat.gif" 
  272.  
  273. REFERER
  274.  
  275.   A HTTP request has the option to include information about which address
  276.   that referred to actual page, and curl allows the user to specify that
  277.   referrer to get specified on the command line. It is especially useful to
  278.   fool or trick stupid servers or CGI scripts that rely on that information
  279.   being available or contain certain data.
  280.  
  281.         curl -e www.coolsite.com http://www.showme.com/
  282.  
  283. USER AGENT
  284.  
  285.   A HTTP request has the option to include information about the browser
  286.   that generated the request. Curl allows it to be specified on the command
  287.   line. It is especially useful to fool or trick stupid servers or CGI
  288.   scripts that only accept certain browsers.
  289.  
  290.   Example:
  291.  
  292.   curl -A 'Mozilla/3.0 (Win95; I)' http://www.nationsbank.com/
  293.  
  294.   Other common strings:
  295.     'Mozilla/3.0 (Win95; I)'     Netscape Version 3 for Windows 95
  296.     'Mozilla/3.04 (Win95; U)'    Netscape Version 3 for Windows 95
  297.     'Mozilla/2.02 (OS/2; U)'     Netscape Version 2 for OS/2
  298.     'Mozilla/4.04 [en] (X11; U; AIX 4.2; Nav)'           NS for AIX
  299.     'Mozilla/4.05 [en] (X11; U; Linux 2.0.32 i586)'      NS for Linux
  300.  
  301.   Note that Internet Explorer tries hard to be compatible in every way:
  302.     'Mozilla/4.0 (compatible; MSIE 4.01; Windows 95)'    MSIE for W95
  303.  
  304.   Mozilla is not the only possible User-Agent name:
  305.     'Konqueror/1.0'             KDE File Manager desktop client
  306.     'Lynx/2.7.1 libwww-FM/2.14' Lynx command line browser
  307.  
  308. COOKIES
  309.  
  310.   Cookies are generally used by web servers to keep state information at the
  311.   client's side. The server sets cookies by sending a response line in the
  312.   headers that looks like 'Set-Cookie: <data>' where the data part then
  313.   typically contains a set of NAME=VALUE pairs (separated by semicolons ';'
  314.   like "NAME1=VALUE1; NAME2=VALUE2;"). The server can also specify for what
  315.   path the "cookie" should be used for (by specifying "path=value"), when the
  316.   cookie should expire ("expire=DATE"), for what domain to use it
  317.   ("domain=NAME") and if it should be used on secure connections only
  318.   ("secure").
  319.  
  320.   If you've received a page from a server that contains a header like:
  321.         Set-Cookie: sessionid=boo123; path="/foo";
  322.  
  323.   it means the server wants that first pair passed on when we get anything in
  324.   a path beginning with "/foo".
  325.  
  326.   Example, get a page that wants my name passed in a cookie:
  327.  
  328.         curl -b "name=Daniel" www.sillypage.com
  329.  
  330.   Curl also has the ability to use previously received cookies in following
  331.   sessions. If you get cookies from a server and store them in a file in a
  332.   manner similar to:
  333.  
  334.         curl --dump-header headers www.example.com
  335.  
  336.   ... you can then in a second connect to that (or another) site, use the
  337.   cookies from the 'headers' file like:
  338.  
  339.         curl -b headers www.example.com
  340.  
  341.   Note that by specifying -b you enable the "cookie awareness" and with -L
  342.   you can make curl follow a location: (which often is used in combination
  343.   with cookies). So that if a site sends cookies and a location, you can
  344.   use a non-existing file to trig the cookie awareness like:
  345.  
  346.         curl -L -b empty-file www.example.com
  347.  
  348.   The file to read cookies from must be formatted using plain HTTP headers OR
  349.   as netscape's cookie file. Curl will determine what kind it is based on the
  350.   file contents.
  351.  
  352. PROGRESS METER
  353.  
  354.   The progress meter exists to show a user that something actually is
  355.   happening. The different fields in the output have the following meaning:
  356.  
  357.   % Total    % Received % Xferd  Average Speed          Time             Curr.
  358.                                  Dload  Upload Total    Current  Left    Speed
  359.   0  151M    0 38608    0     0   9406      0  4:41:43  0:00:04  4:41:39  9287
  360.  
  361.   From left-to-right:
  362.    %             - percentage completed of the whole transfer
  363.    Total         - total size of the whole expected transfer
  364.    %             - percentage completed of the download
  365.    Received      - currently downloaded amount of bytes
  366.    %             - percentage completed of the upload
  367.    Xferd         - currently uploaded amount of bytes
  368.    Average Speed
  369.    Dload         - the average transfer speed of the download
  370.    Average Speed
  371.    Upload        - the average transfer speed of the upload
  372.    Time Total    - expected time to complete the operation
  373.    Time Current  - time passed since the invoke
  374.    Time Left     - expected time left to completetion
  375.    Curr.Speed    - the average transfer speed the last 5 seconds (the first
  376.                    5 seconds of a transfer is based on less time of course.)
  377.  
  378.   The -# option will display a totally different progress bar that doesn't
  379.   need much explanation!
  380.  
  381. SPEED LIMIT
  382.  
  383.   Curl offers the user to set conditions regarding transfer speed that must
  384.   be met to let the transfer keep going. By using the switch -y and -Y you
  385.   can make curl abort transfers if the transfer speed doesn't exceed your
  386.   given lowest limit for a specified time.
  387.  
  388.   To let curl abandon downloading this page if its slower than 3000 bytes per
  389.   second for 1 minute, run:
  390.  
  391.         curl -y 3000 -Y 60 www.far-away-site.com
  392.  
  393.   This can very well be used in combination with the overall time limit, so
  394.   that the above operatioin must be completed in whole within 30 minutes:
  395.  
  396.         curl -m 1800 -y 3000 -Y 60 www.far-away-site.com
  397.  
  398. CONFIG FILE
  399.  
  400.   Curl automatically tries to read the .curlrc file (or _curlrc file on win32
  401.   systems) from the user's home dir on startup. The config file should be
  402.   made up with normal command line switches. Comments can be used within the
  403.   file. If the first letter on a line is a '#'-letter the rest of the line
  404.   is treated as a comment.
  405.  
  406.   Example, set default time out and proxy in a config file:
  407.  
  408.         # We want a 30 minute timeout:
  409.         -m 1800
  410.         # ... and we use a proxy for all accesses:
  411.         -x proxy.our.domain.com:8080
  412.  
  413.   White spaces ARE significant at the end of lines, but all white spaces
  414.   leading up to the first characters of each line are ignored.
  415.  
  416.   Prevent curl from reading the default file by using -q as the first command
  417.   line parameter, like:
  418.  
  419.         curl -q www.thatsite.com
  420.  
  421.   Force curl to get and display a local help page in case it is invoked
  422.   without URL by making a config file similar to:
  423.  
  424.         # default url to get
  425.         http://help.with.curl.com/curlhelp.html
  426.  
  427.   You can specify another config file to be read by using the -K/--config
  428.   flag. If you set config file name to "-" it'll read the config from stdin,
  429.   which can be handy if you want to hide options from being visible in process
  430.   tables etc:
  431.  
  432.         echo "-u user:passwd" | curl -K - http://that.secret.site.com
  433.  
  434. EXTRA HEADERS
  435.  
  436.   When using curl in your own very special programs, you may end up needing
  437.   to pass on your own custom headers when getting a web page. You can do
  438.   this by using the -H flag.
  439.  
  440.   Example, send the header "X-you-and-me: yes" to the server when getting a
  441.   page:
  442.  
  443.         curl -H "X-you-and-me: yes" www.love.com
  444.  
  445.   This can also be useful in case you want curl to send a different text in
  446.   a header than it normally does. The -H header you specify then replaces the
  447.   header curl would normally send.
  448.  
  449. FTP and PATH NAMES
  450.  
  451.   Do note that when getting files with the ftp:// URL, the given path is
  452.   relative the directory you enter. To get the file 'README' from your home
  453.   directory at your ftp site, do:
  454.  
  455.         curl ftp://user:passwd@my.site.com/README
  456.  
  457.   But if you want the README file from the root directory of that very same
  458.   site, you need to specify the absolute file name:
  459.  
  460.         curl ftp://user:passwd@my.site.com//README
  461.  
  462.   (I.e with an extra slash in front of the file name.)
  463.  
  464. FTP and firewalls
  465.  
  466.   The FTP protocol requires one of the involved parties to open a second
  467.   connction as soon as data is about to get transfered. There are two ways to
  468.   do this.
  469.  
  470.   The default way for curl is to issue the PASV command which causes the
  471.   server to open another port and await another connection performed by the
  472.   client. This is good if the client is behind a firewall that don't allow
  473.   incoming connections.
  474.  
  475.         curl ftp.download.com
  476.  
  477.   If the server for example, is behind a firewall that don't allow connections
  478.   on other ports than 21 (or if it just doesn't support the PASV command), the
  479.   other way to do it is to use the PORT command and instruct the server to
  480.   connect to the client on the given (as parameters to the PORT command) IP
  481.   number and port.
  482.  
  483.   The -P flag to curl allows for different options. Your machine may have
  484.   several IP-addresses and/or network interfaces and curl allows you to select
  485.   which of them to use. Default address can also be used:
  486.  
  487.         curl -P - ftp.download.com
  488.  
  489.   Download with PORT but use the IP address of our 'le0' interface:
  490.  
  491.         curl -P le0 ftp.download.com
  492.  
  493.   Download with PORT but use 192.168.0.10 as our IP address to use:
  494.  
  495.         curl -P 192.168.0.10 ftp.download.com
  496.  
  497. HTTPS
  498.  
  499.   Secure HTTP requires SSL libraries to be installed and used when curl is
  500.   built. If that is done, curl is capable of retrieving and posting documents
  501.   using the HTTPS procotol.
  502.  
  503.   Example:
  504.  
  505.         curl https://www.secure-site.com
  506.  
  507.   Curl is also capable of using your personal certificates to get/post files
  508.   from sites that require valid certificates. The only drawback is that the
  509.   certificate needs to be in PEM-format. PEM is a standard and open format to
  510.   store certificates with, but it is not used by the most commonly used
  511.   browsers (Netscape and MSEI both use the so called PKCS#12 format). If you
  512.   want curl to use the certificates you use with your (favourite) browser, you
  513.   may need to download/compile a converter that can convert your browser's
  514.   formatted certificates to PEM formatted ones. This kind of converter is
  515.   included in recent versions of OpenSSL, and for older versions Dr Stephen
  516.   N. Henson has written a patch for SSLeay that adds this functionality. You
  517.   can get his patch (that requires an SSLeay installation) from his site at:
  518.   http://www.drh-consultancy.demon.co.uk/
  519.  
  520.   Example on how to automatically retrieve a document using a certificate with
  521.   a personal password:
  522.  
  523.         curl -E /path/to/cert.pem:password https://secure.site.com/
  524.  
  525.   If you neglect to specify the password on the command line, you will be
  526.   prompted for the correct password before any data can be received.
  527.  
  528.   Many older SSL-servers have problems with SSLv3 or TLS, that newer versions
  529.   of OpenSSL etc is using, therefore it is sometimes useful to specify what
  530.   SSL-version curl should use. Use -3 or -2 to specify that exact SSL version
  531.   to use:
  532.  
  533.         curl -2 https://secure.site.com/
  534.  
  535.   Otherwise, curl will first attempt to use v3 and then v2.
  536.  
  537.   To use OpenSSL to convert your favourite browser's certificate into a PEM
  538.   formatted one that curl can use, do something like this (assuming netscape,
  539.   but IE is likely to work similarly):
  540.  
  541.     You start with hitting the 'security' menu button in netscape. 
  542.  
  543.     Select 'certificates->yours' and then pick a certificate in the list 
  544.  
  545.     Press the 'export' button 
  546.  
  547.     enter your PIN code for the certs 
  548.  
  549.     select a proper place to save it 
  550.  
  551.     Run the 'openssl' application to convert the certificate. If you cd to the
  552.     openssl installation, you can do it like:
  553.  
  554.      # ./apps/openssl pkcs12 -certfile [file you saved] -out [PEMfile]
  555.  
  556.  
  557. RESUMING FILE TRANSFERS
  558.  
  559.  To continue a file transfer where it was previously aborted, curl supports
  560.  resume on http(s) downloads as well as ftp uploads and downloads.
  561.  
  562.  Continue downloading a document:
  563.  
  564.         curl -c -o file ftp://ftp.server.com/path/file
  565.  
  566.  Continue uploading a document(*1):
  567.  
  568.         curl -c -T file ftp://ftp.server.com/path/file
  569.  
  570.  Continue downloading a document from a web server(*2):
  571.  
  572.         curl -c -o file http://www.server.com/
  573.  
  574.  (*1) = This requires that the ftp server supports the non-standard command
  575.         SIZE. If it doesn't, curl will say so.
  576.  
  577.  (*2) = This requires that the wb server supports at least HTTP/1.1. If it
  578.         doesn't, curl will say so.
  579.  
  580. TIME CONDITIONS
  581.  
  582.  HTTP allows a client to specify a time condition for the document it
  583.  requests. It is If-Modified-Since or If-Unmodified-Since. Curl allow you to
  584.  specify them with the -z/--time-cond flag.
  585.  
  586.  For example, you can easily make a download that only gets performed if the
  587.  remote file is newer than a local copy. It would be made like:
  588.  
  589.         curl -z local.html http://remote.server.com/remote.html
  590.  
  591.  Or you can download a file only if the local file is newer than the remote
  592.  one. Do this by prepending the date string with a '-', as in:
  593.  
  594.         curl -z -local.html http://remote.server.com/remote.html
  595.  
  596.  You can specify a "free text" date as condition. Tell curl to only download
  597.  the file if it was updated since yesterday:
  598.  
  599.         curl -z yesterday http://remote.server.com/remote.html
  600.  
  601.  Curl will then accept a wide range of date formats. You always make the date
  602.  check the other way around by prepending it with a dash '-'.
  603.  
  604. DICT
  605.  
  606.   For fun try
  607.  
  608.         curl dict://dict.org/m:curl
  609.         curl dict://dict.org/d:heisenbug:jargon
  610.         curl dict://dict.org/d:daniel:web1913
  611.  
  612.   Aliases for 'm' are 'match' and 'find', and aliases for 'd' are 'define'
  613.   and 'lookup'. For example,
  614.  
  615.         curl dict://dict.org/find:curl
  616.  
  617.   Commands that break the URL description of the RFC (but not the DICT
  618.   protocol) are
  619.  
  620.         curl dict://dict.org/show:db
  621.         curl dict://dict.org/show:strat
  622.  
  623.   Authentication is still missing (but this is not required by the RFC)
  624.  
  625. LDAP
  626.  
  627.   If you have installed the OpenLDAP library, curl can take advantage of it
  628.   and offer ldap:// support.
  629.  
  630.   LDAP is a complex thing and writing an LDAP query is not an easy task. I do
  631.   advice you to dig up the syntax description for that elsewhere, RFC 1959 if
  632.   no other place is better.
  633.  
  634.   To show you an example, this is now I can get all people from my local LDAP
  635.   server that has a certain sub-domain in their email address:
  636.  
  637.         curl -B "ldap://ldap.frontec.se/o=frontec??sub?mail=*sth.frontec.se"
  638.  
  639.   If I want the same info in HTML format, I can get it by not using the -B
  640.   (enforce ASCII) flag.
  641.  
  642. ENVIRONMENT VARIABLES
  643.  
  644.   Curl reads and understands the following environment variables:
  645.  
  646.         HTTP_PROXY, HTTPS_PROXY, FTP_PROXY, GOPHER_PROXY
  647.  
  648.   They should be set for protocol-specific proxies. General proxy should be
  649.   set with
  650.         
  651.         ALL_PROXY
  652.  
  653.   A comma-separated list of host names that shouldn't go through any proxy is
  654.   set in (only an asterisk, '*' matches all hosts)
  655.  
  656.         NO_PROXY
  657.  
  658.   If a tail substring of the domain-path for a host matches one of these
  659.   strings, transactions with that node will not be proxied.
  660.  
  661.  
  662.   The usage of the -x/--proxy flag overrides the environment variables.
  663.  
  664. NETRC
  665.  
  666.   Unix introduced the .netrc concept a long time ago. It is a way for a user
  667.   to specify name and password for commonly visited ftp sites in a file so
  668.   that you don't have to type them in each time you visit those sites. You
  669.   realize this is a big security risk if someone else gets hold of your
  670.   passwords, so therefor most unix programs won't read this file unless it is
  671.   only readable by yourself (curl doesn't care though).
  672.  
  673.   Curl supports .netrc files if told so (using the -n/--netrc option). This is
  674.   not restricted to only ftp, but curl can use it for all protocols where
  675.   authentication is used.
  676.  
  677.   A very simple .netrc file could look something like:
  678.  
  679.         machine curl.haxx.se login iamdaniel password mysecret
  680.  
  681. CUSTOM OUTPUT
  682.  
  683.   To better allow script programmers to get to know about the progress of
  684.   curl, the -w/--write-out option was introduced. Using this, you can specify
  685.   what information from the previous transfer you want to extract.
  686.  
  687.   To display the amount of bytes downloaded together with some text and an
  688.   ending newline:
  689.  
  690.         curl -w 'We downloaded %{size_download} bytes\n' www.download.com
  691.  
  692. MAILING LIST
  693.  
  694.   We have an open mailing list to discuss curl, its development and things
  695.   relevant to this.
  696.  
  697.   To subscribe, mail curl-request@contactor.se with "subscribe <your email
  698.   address>" in the body.
  699.  
  700.   To post to the list, mail curl@contactor.se.
  701.  
  702.   To unsubcribe, mail curl-request@contactor.se with "unsubscribe <your
  703.   subscribed email address>" in the body.
  704.  
  705.