Blame


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