add/re-enable at_wini debug output
[minix3.git] / man / man1 / urlget.1
blobff822b8479b8fd74683880f185e6e1b6dfa4302a
1 .TH URLGET 1
2 .SH NAME
3 urlget, ftpget, httpget \- retrieve a file from the internet to stdout
4 .SH SYNOPSIS
5 .B urlget 
6 .RB [ \-h ]
7 .RB [ \-d ]
8 .RB [ \-p ]
9 .RI url
11 .B ftpget 
12 .RI host 
13 .RI path 
14 .RI [user[pass]]
16 .B httpget 
17 .RB [ \-h ]
18 .RB [ \-d ]
19 .RB [ \-p ]
20 .RI host
21 .RI path
22 .SH DESCRIPTION
23 .de SP
24 .if t .sp 0.4
25 .if n .sp
27 .B Urlget 
28 gets a file specified by a URL and copies it to standard output.
30 .B Ftpget
31 similarly gets a file from a conventional ftp server, a login name
32 and password can be specified.
34 .B Httpget
35 is similar to 
36 .B urlget,
37 but the host and path are specified separately without a scheme, as with
38 ftpget. 
39 .SH OPTIONS
40 .TP
41 .B \-h
42 show the status line and MIME header from the server.
44 .B \-d
45 discard the file body.
47 .B \-p
48 use POST method, otherwise use GET.
49 .SH EXAMPLES
50 .de EX
51 .TP 20
52 \\fB\\$1\\fR
53 # \\$2
55 .TP 15n
56 .EX "urlget http://minix1.woodhull.com/pub/contrib/file.tar.Z > file.tar.Z" "Download file.tar.Z"
57 .EX "ftpget minix1.woodhull.com /pub/contrib/README.txt > README.txt" "Get a file from an anonymous ftp server"
58 .EX "httpget -dh minix1.woodhull.com/index.html" "Inspect the header of a web page"
59 .SH NOTES
60 These commands execute the same binary under different names. These commands
61 provide a lightweight non-interactive command-line method of downloading a 
62 file or inspecting the status of a web page. Data retrieved are written 
63 to standard output.
64 .SH AUTHOR
65 Michael Temari <Michael@TemWare.Com>
67 Man page compiled by Al Woodhull <asw@woodhull.com>
68 .\" rev 2006-06-16