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 11cd7416 2022-01-16 op .It Ic cd Ar remote-path
64 11cd7416 2022-01-16 op Change the working directory on the remote machine to
65 11cd7416 2022-01-16 op .Ar remote-path .
66 11cd7416 2022-01-16 op .It Ic edit Ar remote-path
67 11cd7416 2022-01-16 op Download
68 11cd7416 2022-01-16 op .Ar remote-path
69 11cd7416 2022-01-16 op and open it with the preferred editor
70 11cd7416 2022-01-16 op .Po
71 11cd7416 2022-01-16 op .Ev VISUAL
72 11cd7416 2022-01-16 op or
73 11cd7416 2022-01-16 op .Ev EDITOR
74 11cd7416 2022-01-16 op with
75 11cd7416 2022-01-16 op .Xr ed 1
76 11cd7416 2022-01-16 op as fallback
77 11cd7416 2022-01-16 op .Pc
78 11cd7416 2022-01-16 op then attempt to re-upload it.
79 11cd7416 2022-01-16 op .It Ic get Ar remote-file Op Ar local-file
80 11cd7416 2022-01-16 op Fetch
81 11cd7416 2022-01-16 op .Ar remote-file
82 11cd7416 2022-01-16 op and save it locally as
83 11cd7416 2022-01-16 op .Ar local-file .
84 11cd7416 2022-01-16 op If
85 11cd7416 2022-01-16 op .Ar local-file
86 11cd7416 2022-01-16 op is not given, use the file name from
87 11cd7416 2022-01-16 op .Ar remote-file .
88 5565d021 2022-01-16 op .It Ic hexdump Oo Cm on | off Oc
89 5565d021 2022-01-16 op Print the packets sent from/to the server.
90 5565d021 2022-01-16 op Without arguments, toggle the current state.
91 11cd7416 2022-01-16 op .It Ic lcd Op Ar local-directory
92 11cd7416 2022-01-16 op Change the local current working directory to
93 11cd7416 2022-01-16 op .Ar local-directory
94 11cd7416 2022-01-16 op or the
95 11cd7416 2022-01-16 op .Ev HOME
96 11cd7416 2022-01-16 op if not given.
97 11cd7416 2022-01-16 op .It Ic lpwd
98 11cd7416 2022-01-16 op Print the local working directory.
99 fb1a36c0 2022-01-09 op .It Ic ls
100 11cd7416 2022-01-16 op List the file in the remote current working directory.
101 11cd7416 2022-01-16 op .It Ic page Ar remote-file
102 11cd7416 2022-01-16 op Download
103 11cd7416 2022-01-16 op .Ar remote-file
104 11cd7416 2022-01-16 op and open it with the
105 11cd7416 2022-01-16 op .Ev PAGER
106 11cd7416 2022-01-16 op .Pq Xr less 1 by default .
107 1c9ab7cf 2022-01-29 op .It Ic pipe Ar remote-file Ar cmd Op Ar args...
108 1c9ab7cf 2022-01-29 op Fetch
109 1c9ab7cf 2022-01-29 op .Ar remote-file
110 1c9ab7cf 2022-01-29 op and pass it as standard input for
111 1c9ab7cf 2022-01-29 op .Ar cmd
112 1c9ab7cf 2022-01-29 op (with optional
113 1c9ab7cf 2022-01-29 op .Ar args Ns ).
114 11cd7416 2022-01-16 op .It Ic put Ar local-file Op Ar remote-file
115 11cd7416 2022-01-16 op Upload
116 11cd7416 2022-01-16 op .Ar local-file
117 11cd7416 2022-01-16 op to
118 11cd7416 2022-01-16 op .Ar remote-file .
119 11cd7416 2022-01-16 op If
120 11cd7416 2022-01-16 op .Ar remote-file
121 11cd7416 2022-01-16 op is not given,
122 11cd7416 2022-01-16 op use the file name from
123 11cd7416 2022-01-16 op .Ar local-file .
124 fb1a36c0 2022-01-09 op .It Ic quit
125 fb1a36c0 2022-01-09 op Terminate the session.
126 fb1a36c0 2022-01-09 op Synomym of
127 fb1a36c0 2022-01-09 op .Ic bye .
128 424338c2 2022-01-29 op .It Ic rename Ar remote-file Ar new-remote-name
129 13b8bb0a 2022-01-17 op Renames
130 13b8bb0a 2022-01-17 op .Ar remote-file
131 13b8bb0a 2022-01-17 op to
132 13b8bb0a 2022-01-17 op .Ar new-remote-name
133 13b8bb0a 2022-01-17 op on the remote server.
134 fb1a36c0 2022-01-09 op .It Ic verbose Oo Cm on | off Oc
135 fb1a36c0 2022-01-09 op Print verbose information.
136 fb1a36c0 2022-01-09 op Without arguments toggle the current state.
137 fb1a36c0 2022-01-09 op .El
138 11cd7416 2022-01-16 op .Sh ENVIRONMENT
139 11cd7416 2022-01-16 op The following environment variables are inspected:
140 11cd7416 2022-01-16 op .Bl -tag -width Ds
141 11cd7416 2022-01-16 op .It Ev HOME
142 11cd7416 2022-01-16 op The user login directory.
143 11cd7416 2022-01-16 op .It Ev PAGER
144 7d4a725d 2022-01-17 op The pager to use,
145 11cd7416 2022-01-16 op .Xr less 1
146 11cd7416 2022-01-16 op by default.
147 11cd7416 2022-01-16 op .It Ev VISUAL, Ev EDITOR
148 11cd7416 2022-01-16 op The program used to edit files.
149 11cd7416 2022-01-16 op .Ev VISUAL
150 11cd7416 2022-01-16 op is inspected first,
151 11cd7416 2022-01-16 op .Ev EDITOR
152 11cd7416 2022-01-16 op as a fallback.
153 11cd7416 2022-01-16 op If both are undefined,
154 11cd7416 2022-01-16 op .Xr ed 1
155 11cd7416 2022-01-16 op is given some love.
156 11cd7416 2022-01-16 op .El
157 fb1a36c0 2022-01-09 op .Sh SEE ALSO
158 fb1a36c0 2022-01-09 op .Xr 9p 7 ,
159 fb1a36c0 2022-01-09 op .Xr kamid 8
160 fb1a36c0 2022-01-09 op .Sh AUTHORS
161 fb1a36c0 2022-01-09 op The
162 fb1a36c0 2022-01-09 op .Nm
163 fb1a36c0 2022-01-09 op utility was written by
164 fb1a36c0 2022-01-09 op .An Omar Polo Aq Mt op@omarpolo.com .