blob: eccd29f87b4e705c67277c753168a36e904a886f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
.TH https@ 1
.SH NAME
https@ \- simple HTTPS client
.SH SYNOPSIS
.B https@
.I host
[
.I page
.I port
.I args
]
.SH DESCRIPTION
.B https@
connects via the IP[v4|v6] protocol to
.I host
on
.I port
via TCP, and then attempts an SSL connection. It sends the request:
.EX
GET /page HTTP/1.0
Host: host
.EE
and prints the body of the response, removing the CR from the end of each line.
If
.I port
is not supplied,
.B https@
uses TCP port 443 (HTTPS).
If
.I page
is not supplied,
.B https@
asks for / from
.IR host .
If
.I host is not supplied,
.B https@
connects to the local host.
If
.I args
are supplied, they are passed to
.B https@
unmodified.
.SH SEE ALSO
sslserver(1),
sslclient(1),
sslconnect(1),
sslcat(1),
tcp-environ(5).
.SH REFERENCE
http://httpd.apache.org/docs/2.4/mod/mod_ssl.html
|