Patch from RDB: the ESC[8...t resize sequence and the ESC[18t size
[u/mdw/putty] / doc / psftp.but
CommitLineData
ff2ae367 1\versionid $Id: psftp.but,v 1.4 2001/12/31 16:15:19 simon Exp $
9a313f60 2
3\C{psftp} Using PSFTP to transfer files securely
4
5\i{PSFTP}, the PuTTY SFTP client, is a tool for transferring files
6securely between computers using an SSH connection.
7
8PSFTP differs from PSCP in the following ways:
9
10\b PSCP should work on virtually every SSH server. PSFTP uses the
11new SFTP protocol, which is a feature of SSH 2 only. (PSCP will also
12use this protocol if it can, but there is an SSH 1 equivalent it can
13fall back to if it cannot.)
14
15\b PSFTP allows you to run an interactive file transfer session,
16much like the Windows \c{ftp} program. You can list the contents of
17directories, browse around the file system, issue multiple \c{get}
18and \c{put} commands, and eventually log out. By contrast, PSCP is
19designed to do a single file transfer operation and immediately
20terminate.
21
22\H{psftp-starting} Starting PSFTP
23
24The usual way to start PSFTP is from a command prompt, much like
25PSCP. To do this, it will need either to be on your \i{\c{PATH}} or
26in your current directory. To add the directory containing PSFTP to
27your \c{PATH} environment variable, type into the console window:
28
29\c set PATH=C:\path\to\putty\directory;%PATH%
30
31Unlike PSCP, however, PSFTP has no complex command-line syntax; you
32just specify a host name and perhaps a user name:
33
34\c psftp server.example.com
35
36or perhaps
37
38\c psftp fred@server.example.com
39
40Alternatively, if you just type \c{psftp} on its own (or
41double-click the PSFTP icon in the Windows GUI), you will see the
42PSFTP prompt, and a message telling you PSFTP has not connected to
43any server:
44
45\c C:\>psftp
46\c psftp: no hostname specified; use "open host.name" to connect
47\c psftp>
48
49At this point you can type \c{open server.example.com} or \c{open
50fred@server.example.com} to start a session.
51
52The following sections describe PSFTP's command-line options.
53
54\S{psftp-option-l} \c{-l}: specify a user name
55
56The \c{-l} option is an alternative way to specify the user name to
57log in as, on the command line. Instead of typing \c{psftp
58user@host}, you can also type \c{psftp host -l user}.
59
60This option does not work in the \c{open} command once PSFTP has
61started.
62
63\S{psftp-option-P} \c{-P}: specify a port number
64
65If the \c{host} you specify is a saved session, PSFTP uses any port
66number specified in that saved session. If not, PSFTP uses the
67default SSH port, 22. The \c{-P} option allows you specify the port
68number to connect to for PSFTP's SSH connection.
69
70\S{psftp-option-v}\c{-v}: show verbose messages
71
72The \c{-v} option to PSFTP makes it print verbose information about
73the establishing of the SSH connection. The information displayed is
74equivalent to what is shown in the PuTTY Event Log
75(\k{using-eventlog}).
76
77This information may be useful for debugging problems with PSFTP.
78
79\S{psftp-option-pw} \c{-pw}: specify a password
80
81If a password is required to connect to the \c{host}, PSFTP will
82interactively prompt you for it. However, this may not always be
83appropriate. If you are running PSFTP as part of some automated
84job, it will not be possible to enter a password by hand. The
85\c{-pw} option to PSFTP lets you specify the password to use on the
86command line.
87
88Since specifying passwords in scripts is a bad idea for security
89reasons, you might want instead to consider using public-key
90authentication; see \k{psftp-pubkey}.
91
92\S{psftp-option-b} \c{-b}: specify a file containing batch commands
93
94In normal operation, PSFTP is an interactive program which displays
95a command line and accepts commands from the keyboard.
96
97If you need to do automated tasks with PSFTP, you would probably
98prefer to specify a set of commands in advance and have them
99executed automatically. The \c{-b} option allows you to do this. You
100use it with a file name containing batch commands. For example, you
101might create a file called \c{myscript.scr} containing lines like
102this:
103
104\c cd /home/ftp/users/jeff
105\c del jam-old.tar.gz
106\c ren jam.tar.gz jam-old.tar.gz
107\c put jam.tar.gz
108\c chmod a+r jam.tar.gz
109\c quit
110
111and then you could run the script by typing
112
113\c psftp user@hostname -b myscript.scr
114
115When you run a batch script in this way, PSFTP will abort the script
116if any command fails to complete successfully. To change this
117behaviour, you can use the \c{-be} option (\k{psftp-option-be}).
118
119\S{psftp-option-bc} \c{-bc}: display batch commands as they are run
120
121The \c{-bc} option alters what PSFTP displays while processing a
122batch script. With the \c{-bc} option, PSFTP will display prompts
123and commands just as if the commands had been typed at the keyboard.
124So instead of seeing this:
125
126\c Sent username "fred"
127\c Remote working directory is /home/fred
128\c Listing directory /home/fred/lib
129\c drwxrwsr-x 4 fred fred 1024 Sep 6 10:42 .
130\c drwxr-sr-x 25 fred fred 2048 Dec 14 09:36 ..
131\c drwxrwsr-x 3 fred fred 1024 Apr 17 2000 jed
132\c lrwxrwxrwx 1 fred fred 24 Apr 17 2000 timber
133\c drwxrwsr-x 2 fred fred 1024 Mar 13 2000 trn
134
135you might see this:
136
137\c Sent username "fred"
138\c Remote working directory is /home/fred
139\c psftp> dir lib
140\c Listing directory /home/fred/lib
141\c drwxrwsr-x 4 fred fred 1024 Sep 6 10:42 .
142\c drwxr-sr-x 25 fred fred 2048 Dec 14 09:36 ..
143\c drwxrwsr-x 3 fred fred 1024 Apr 17 2000 jed
144\c lrwxrwxrwx 1 fred fred 24 Apr 17 2000 timber
145\c drwxrwsr-x 2 fred fred 1024 Mar 13 2000 trn
146\c psftp> quit
147
148\S{psftp-option-be} \c{-be}: continue batch processing on errors
149
150When running a batch file, this option causes PSFTP to continue
151processing even if a command fails to complete successfully.
152
153You might want this to happen if you wanted to delete a file and
154didn't care if it was already not present, for example.
155
ff2ae367 156\S{psftp-usage-options-batch}\c{-batch}: avoid interactive prompts
157
158If you use the \c{-batch} option, PSFTP will never give an
159interactive prompt while establishing the connection. If the
160server's host key is invalid, for example (see \k{gs-hostkey}), then
161the connection will simply be abandoned instead of asking you what
162to do next.
163
164This may help PSFTP's behaviour when it is used in automated
165scripts: using \c{-batch}, if something goes wrong at connection
166time, the batch job will fail rather than hang.
167
9a313f60 168\H{psftp-commands} Running PSFTP
169
170Once you have started your PSFTP session, you will see a \c{psftp>}
171prompt. You can now type commands to perform file-transfer
172functions. This section lists all the available commands.
173
3af97463 174\S{psftp-quoting} General quoting rules for PSFTP commands
175
176Most PSFTP commands are considered by the PSFTP command interpreter
177as a sequence of words, separated by spaces. For example, the
178command \c{ren oldfilename newfilename} splits up into three words:
179\c{ren} (the command name), \c{oldfilename} (the name of the file to
180be renamed), and \c{newfilename} (the new name to give the file).
181
182Sometimes you will need to specify file names that \e{contain}
183spaces. In order to do this, you can surround the file name with
184double quotes. This works equally well for local file names and
185remote file names:
186
187\c psftp> get "spacey file name.txt" "save it under this name.txt"
188
189The double quotes themselves will not appear as part of the file
190names; they are removed by PSFTP and their only effect is to stop
191the spaces inside them from acting as word separators.
192
193If you need to \e{use} a double quote (on some types of remote
194system, such as Unix, you are allowed to use double quotes in file
195names), you can do this by doubling it. This works both inside and
196outside double quotes. For example, this command
197
198\c psftp> ren ""this"" "a file with ""quotes"" in it"
199
200will take a file whose current name is \c{"this"} (with a double
201quote character at the beginning and the end) and rename it to a
202file whose name is \c{a file with "quotes" in it}.
203
204(The one exception to the PSFTP quoting rules is the \c{!} command,
205which passes its command line straight to Windows without splitting
206it up into words at all. See \k{psftp-cmd-pling}.)
207
9a313f60 208\S{psftp-cmd-open} The \c{open} command: start a session
209
210If you started PSFTP by double-clicking in the GUI, or just by
211typing \c{psftp} at the command line, you will need to open a
212connection to an SFTP server before you can issue any other
213commands (except \c{help} and \c{quit}).
214
215To create a connection, type \c{open host.name}, or if you need to
216specify a user name as well you can type \c{open user@host.name}.
217
218Once you have issued this command, you will not be able to issue it
219again, \e{even} if the command fails (for example, if you mistype
220the host name or the connection times out). So if the connection is
221not opened successfully, PSFTP will terminate immediately.
222
223\S{psftp-cmd-quit} The \c{quit} command: end your session
224
225When you have finished your session, type the command \c{quit} to
226terminate PSFTP and return to the command line (or just close the
227PSFTP console window if you started it from the GUI).
228
229You can also use the \c{bye} and \c{exit} commands, which have
230exactly the same effect.
231
232\S{psftp-cmd-help} The \c{help} command: get quick online help
233
234If you type \c{help}, PSFTP will give a short list of the available
235commands.
236
237If you type \c{help} with a command name - for example, \c{help get}
238- then PSFTP will give a short piece of help on that particular
239command.
240
241\S{psftp-cmd-cd} The \c{cd} and \c{pwd} commands: changing the
242remote working directory
243
244PSFTP maintains a notion of your \q{working directory} on the
245server. This is the default directory that other commands will
246operate on. For example, if you type \c{get filename.dat} then PSFTP
3af97463 247will look for \c{filename.dat} in your remote working directory on
248the server.
9a313f60 249
3af97463 250To change your remote working directory, use the \c{cd} command. To
251display your current remote working directory, type \c{pwd}.
252
253\S{psftp-cmd-lcd} The \c{lcd} and \c{lpwd} commands: changing the
254local working directory
255
256As well as having a working directory on the remote server, PSFTP
257also has a working directory on your local machine (just like any
258other Windows process). This is the default local directory that
259other commands will operate on. For example, if you type \c{get
260filename.dat} then PSFTP will save the resulting file as
261\c{filename.dat} in your local working directory.
262
263To change your local working directory, use the \c{lcd} command. To
264display your current local working directory, type \c{lpwd}.
9a313f60 265
266\S{psftp-cmd-get} The \c{get} command: fetch a file from the server
267
268To download a file from the server and store it on your local PC,
269you use the \c{get} command.
270
271In its simplest form, you just use this with a file name:
272
273\c get myfile.dat
274
275If you want to store the file locally under a different name,
276specify the local file name after the remote one:
277
278\c get myfile.dat newname.dat
279
280This will fetch the file on the server called \c{myfile.dat}, but
281will save it to your local machine under the name \c{newname.dat}.
282
283\S{psftp-cmd-put} The \c{put} command: send a file to the server
284
285To upload a file to the server from your local PC, you use the
286\c{put} command.
287
288In its simplest form, you just use this with a file name:
289
290\c put myfile.dat
291
292If you want to store the file remotely under a different name,
293specify the remote file name after the local one:
294
295\c put myfile.dat newname.dat
296
297This will send the local file called \c{myfile.dat}, but will store
298it on the server under the name \c{newname.dat}.
299
300\S{psftp-cmd-regetput} The \c{reget} and \c{reput} commands:
301resuming file transfers
302
303If a file transfer fails half way through, and you end up with half
304the file stored on your disk, you can resume the file transfer using
305the \c{reget} and \c{reput} commands. These work exactly like the
306\c{get} and \c{put} commands, but they check for the presence of the
307half-written destination file and start transferring from where the
308last attempt left off.
309
310The syntax of \c{reget} and \c{reput} is exactly the same as the
311syntax of \c{get} and \c{put}:
312
313\c reget myfile.dat
314\c reget myfile.dat newname.dat
315
316\S{psftp-cmd-dir} The \c{dir} command: list remote files
317
318To list the files in your remote working directory, just type
319\c{dir}.
320
321You can also list the contents of a different directory by typing
322\c{dir} followed by the directory name:
323
324\c dir /home/fred
325\c dir sources
326
327The \c{ls} command works exactly the same way as \c{dir}.
328
329\S{psftp-cmd-chmod} The \c{chmod} command: change permissions on
330remote files
331
332PSFTP allows you to modify the file permissions on files on the
333server. You do this using the \c{chmod} command, which works very
334much like the Unix \c{chmod} command.
335
336The basic syntax is \c{chmod modes file}, where \c{modes} represents
337a modification to the file permissions, and \c{file} is the filename
338to modify. For example:
339
340\c chmod go-rwx,u+w privatefile
341\c chmod a+r publicfile
342\c chmod 640 groupfile
343
344The \c{modes} parameter can be a set of octal digits in the Unix
345style. (If you don't know what this means, you probably don't want
346to be using it!) Alternatively, it can be a list of permission
347modifications, separated by commas. Each modification consists of:
348
349\b The people affected by the modification. This can be \c{u} (the
350owning user), \c{g} (members of the owning group), or \c{o}
351(everybody else - \q{others}), or some combination of those. It can
352also be \c{a} (\q{all}) to affect everybody at once.
353
354\b A \c{+} or \c{-} sign, indicating whether permissions are to be
355added or removed.
356
357\b The actual permissions being added or removed. These can be \c{r}
358(permission to read the file), \c{w} (permission to write to the
359file), and \c{x} (permission to execute the file, or in the case of
360a directory, permission to access files within the directory).
361
362So the above examples would do:
363
364\b The first example: \c{go-rwx} removes read, write and execute
365permissions for members of the owning group and everybody else (so
366the only permissions left are the ones for the file owner). \c{u+w}
367adds write permission for the file owner.
368
369\b The second example: \c{a+r} adds read permission for everybody.
370
371In addition to all this, there are a few extra special cases for
372Unix systems. On non-Unix systems these are unlikely to be useful:
373
374\b You can specify \c{u+s} and \c{u-s} to add or remove the Unix
375set-user-ID bit. This is typically only useful for special purposes;
376refer to your Unix documentation if you're not sure about it.
377
378\b You can specify \c{g+s} and \c{g-s} to add or remove the Unix
379set-group-ID bit. On a file, this works similarly to the set-user-ID
380bit (see your Unix documentation again); on a directory it ensures
381that files created in the directory are accessible by members of the
382group that owns the directory.
383
384\b You can specify \c{+t} and \c{-t} to add or remove the Unix
385\q{sticky bit}. When applied to a directory, this means that the
386owner of a file in that directory can delete the file (whereas
387normally only the owner of the \e{directory} would be allowed to).
388
389\S{psftp-cmd-del} The \c{del} command: delete remote files
390
391To delete a file on the server, type \c{del} and then the filename:
392
393\c del oldfile.dat
394
395The \c{rm} command works exactly the same way as \c{del}.
396
397\S{psftp-cmd-mkdir} The \c{mkdir} command: create remote directories
398
399To create a directory on the server, type \c{mkdir} and then the
400directory name:
401
402\c mkdir newstuff
403
404\S{psftp-cmd-rmdir} The \c{rmdir} command: remove remote directories
405
406To remove a directory on the server, type \c{rmdir} and then the
407directory name:
408
409\c rmdir oldstuff
410
411Most SFTP servers will probably refuse to remove a directory if the
412directory has anything in it, so you will need to delete the
413contents first.
414
415\S{psftp-cmd-ren} The \c{ren} command: rename remote files
416
417To rename a file on the server, type \c{ren}, then the current file
418name, and then the new file name:
419
420\c ren oldfile newname
421
422The \c{rename} and \c{mv} commands work exactly the same way as
423\c{ren}.
eb4f8180 424
3af97463 425\S{psftp-cmd-pling} The \c{!} command: run a local Windows command
426
427You can run local Windows commands using the \c{!} command. This is
428the only PSFTP command that is not subject to the command quoting
429rules given in \k{psftp-quoting}. If any command line begins with
430the \c{!} character, then the rest of the line will be passed
431straight to Windows without further translation.
432
433For example, if you want to move an existing copy of a file out of
434the way before downloading an updated version, you might type:
435
436\c psftp> !ren myfile.dat myfile.bak
437\c psftp> get myfile.dat
438
439using the Windows \c{ren} command to rename files on your local PC.
440
eb4f8180 441\H{psftp-pubkey} Using public key authentication with PSFTP
442
443Like PuTTY, PSFTP can authenticate using a public key instead of a
444password. There are two ways you can do this.
445
446Firstly, PSFTP can use PuTTY saved sessions in place of hostnames.
447So you might do this:
448
449\b Run PuTTY, and create a PuTTY saved session (see
450\k{config-saving}) which specifies your private key file (see
451\k{config-ssh-privkey}). You will probably also want to specify a
452username to log in as (see \k{config-username}).
453
454\b In PSFTP, you can now use the name of the session instead of a
455hostname: type \c{psftp sessionname}, where \c{sessionname} is
456replaced by the name of your saved session.
457
458Secondly, PSFTP will attempt to authenticate using Pageant if Pageant
459is running (see \k{pageant}). So you would do this:
460
461\b Ensure Pageant is running, and has your private key stored in it.
462
463\b Specify a user and host name to PSFTP as normal. PSFTP will
464automatically detect Pageant and try to use the keys within it.
465
466For more general information on public-key authentication, see
467\k{pubkey}.