Blame


1 ce3844d2 2021-12-14 op .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 ce3844d2 2021-12-14 op .\"
3 ce3844d2 2021-12-14 op .\" Permission to use, copy, modify, and distribute this software for any
4 ce3844d2 2021-12-14 op .\" purpose with or without fee is hereby granted, provided that the above
5 ce3844d2 2021-12-14 op .\" copyright notice and this permission notice appear in all copies.
6 ce3844d2 2021-12-14 op .\"
7 ce3844d2 2021-12-14 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 ce3844d2 2021-12-14 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 ce3844d2 2021-12-14 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 ce3844d2 2021-12-14 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 ce3844d2 2021-12-14 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 ce3844d2 2021-12-14 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 ce3844d2 2021-12-14 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 ce3844d2 2021-12-14 op .\"
15 ce3844d2 2021-12-14 op .Dd $Mdocdate: December 14 2021 $
16 ce3844d2 2021-12-14 op .Dt KAMIFTP 1
17 ce3844d2 2021-12-14 op .Os
18 ce3844d2 2021-12-14 op .Sh NAME
19 ce3844d2 2021-12-14 op .Nm kamiftp
20 ce3844d2 2021-12-14 op .Nd 9p client
21 ce3844d2 2021-12-14 op .Sh SYNOPSIS
22 ce3844d2 2021-12-14 op .Nm
23 ce3844d2 2021-12-14 op .Op Fl c
24 ce3844d2 2021-12-14 op .Op Fl C Ar cert
25 ce3844d2 2021-12-14 op .Op Fl K Ar key
26 ce3844d2 2021-12-14 op .Ar host Op Ar path
27 ce3844d2 2021-12-14 op .Sh DESCRIPTION
28 ce3844d2 2021-12-14 op .Nm
29 ce3844d2 2021-12-14 op is a
30 ce3844d2 2021-12-14 op .Xr 9p 7
31 ce3844d2 2021-12-14 op client.
32 ce3844d2 2021-12-14 op .Pp
33 ce3844d2 2021-12-14 op The options are as follows:
34 ce3844d2 2021-12-14 op .Bl -tag -width Ds
35 ce3844d2 2021-12-14 op .It Fl c
36 ce3844d2 2021-12-14 op Use TLS for the connection.
37 ce3844d2 2021-12-14 op .Fl K
38 ce3844d2 2021-12-14 op and
39 ce3844d2 2021-12-14 op .Fl C
40 ce3844d2 2021-12-14 op are mandatory if
41 ce3844d2 2021-12-14 op .Fl c
42 ce3844d2 2021-12-14 op is used.
43 ce3844d2 2021-12-14 op .It Fl C Ar certificate
44 ce3844d2 2021-12-14 op Specify the path to the client
45 ce3844d2 2021-12-14 op .Ar certificate
46 ce3844d2 2021-12-14 op to be use during the TLS handsahke.
47 ce3844d2 2021-12-14 op .It Fl K Ar key
48 ce3844d2 2021-12-14 op Specify the path to the client certificate
49 ce3844d2 2021-12-14 op .Ar key
50 ce3844d2 2021-12-14 op to be used during the TLS handshake.
51 ce3844d2 2021-12-14 op .El
52 423f02f5 2021-12-28 cage .Pp
53 423f02f5 2021-12-28 cage The following commands are recognized by
54 423f02f5 2021-12-28 cage .Nm :
55 423f02f5 2021-12-28 cage .Bl -tag -width Ds
56 423f02f5 2021-12-28 cage .It Ic bell Oo Cm on | off Oc
57 423f02f5 2021-12-28 cage Request terminal to sound a bell after each command.
58 423f02f5 2021-12-28 cage Without arguments toggle the current state.
59 423f02f5 2021-12-28 cage .It Ic bye
60 423f02f5 2021-12-28 cage Terminate the session.
61 423f02f5 2021-12-28 cage Synomym of
62 423f02f5 2021-12-28 cage .Ic quit .
63 423f02f5 2021-12-28 cage .It Ic ls
64 423f02f5 2021-12-28 cage List the file in the current directory
65 423f02f5 2021-12-28 cage .It Ic quit
66 423f02f5 2021-12-28 cage Terminate the session.
67 423f02f5 2021-12-28 cage Synomym of
68 423f02f5 2021-12-28 cage .Ic bye .
69 423f02f5 2021-12-28 cage .It Ic verbose Oo Cm on | off Oc
70 423f02f5 2021-12-28 cage Print verbose information.
71 423f02f5 2021-12-28 cage Without arguments toggle the current state.
72 423f02f5 2021-12-28 cage .El
73 ce3844d2 2021-12-14 op .Sh SEE ALSO
74 423f02f5 2021-12-28 cage .Xr 9p 7 ,
75 ce3844d2 2021-12-14 op .Xr kamid 8
76 ce3844d2 2021-12-14 op .Sh AUTHORS
77 ce3844d2 2021-12-14 op The
78 ce3844d2 2021-12-14 op .Nm
79 ce3844d2 2021-12-14 op utility was written by
80 ce3844d2 2021-12-14 op .An Omar Polo Aq Mt op@omarpolo.com .