Explicitly add linking to our website to the "asking permission for things"
[u/mdw/putty] / doc / psftp.but
CommitLineData
39a938f7 1\define{versionidpsftp} \versionid $Id$
9a313f60 2
421406a4 3\C{psftp} Using \i{PSFTP} to transfer files securely
9a313f60 4
421406a4 5\i{PSFTP}, the PuTTY SFTP client, is a tool for \i{transferring files}
9a313f60 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
421406a4 11new \i{SFTP} protocol, which is a feature of SSH-2 only. (PSCP will also
2e85c969 12use this protocol if it can, but there is an SSH-1 equivalent it can
9a313f60 13fall back to if it cannot.)
14
15\b PSFTP allows you to run an interactive file transfer session,
421406a4 16much like the Windows \i\c{ftp} program. You can list the contents of
9a313f60 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
e117a742 52PSFTP accepts all the general command line options supported by the
53PuTTY tools, except the ones which make no sense in a file transfer
54utility. See \k{using-general-opts} for a description of these
55options. (The ones not supported by PSFTP are clearly marked.)
9a313f60 56
e117a742 57PSFTP also supports some of its own options. The following sections
58describe PSFTP's specific command-line options.
9a313f60 59
421406a4 60\S{psftp-option-b} \I{-b-PSFTP}\c{-b}: specify a file containing batch commands
9a313f60 61
62In normal operation, PSFTP is an interactive program which displays
63a command line and accepts commands from the keyboard.
64
65If you need to do automated tasks with PSFTP, you would probably
421406a4 66prefer to \I{batch scripts in PSFTP}specify a set of commands in
67advance and have them executed automatically. The \c{-b} option
68allows you to do this. You use it with a file name containing batch
69commands. For example, you might create a file called \c{myscript.scr}
70containing lines like this:
9a313f60 71
72\c cd /home/ftp/users/jeff
73\c del jam-old.tar.gz
74\c ren jam.tar.gz jam-old.tar.gz
75\c put jam.tar.gz
76\c chmod a+r jam.tar.gz
77\c quit
78
79and then you could run the script by typing
80
81\c psftp user@hostname -b myscript.scr
82
83When you run a batch script in this way, PSFTP will abort the script
84if any command fails to complete successfully. To change this
f45c22d6 85behaviour, you can add the \c{-be} option (\k{psftp-option-be}).
9a313f60 86
421406a4 87\S{psftp-option-bc} \I{-bc-PSFTP}\c{-bc}: display batch commands as they are run
9a313f60 88
89The \c{-bc} option alters what PSFTP displays while processing a
f45c22d6 90batch script specified with \c{-b}. With the \c{-bc} option, PSFTP
91will display prompts and commands just as if the commands had been
92typed at the keyboard. So instead of seeing this:
9a313f60 93
f45c22d6 94\c C:\>psftp fred@hostname -b batchfile
9a313f60 95\c Sent username "fred"
96\c Remote working directory is /home/fred
97\c Listing directory /home/fred/lib
98\c drwxrwsr-x 4 fred fred 1024 Sep 6 10:42 .
99\c drwxr-sr-x 25 fred fred 2048 Dec 14 09:36 ..
100\c drwxrwsr-x 3 fred fred 1024 Apr 17 2000 jed
101\c lrwxrwxrwx 1 fred fred 24 Apr 17 2000 timber
102\c drwxrwsr-x 2 fred fred 1024 Mar 13 2000 trn
103
104you might see this:
105
f45c22d6 106\c C:\>psftp fred@hostname -bc -b batchfile
9a313f60 107\c Sent username "fred"
108\c Remote working directory is /home/fred
109\c psftp> dir lib
110\c Listing directory /home/fred/lib
111\c drwxrwsr-x 4 fred fred 1024 Sep 6 10:42 .
112\c drwxr-sr-x 25 fred fred 2048 Dec 14 09:36 ..
113\c drwxrwsr-x 3 fred fred 1024 Apr 17 2000 jed
114\c lrwxrwxrwx 1 fred fred 24 Apr 17 2000 timber
115\c drwxrwsr-x 2 fred fred 1024 Mar 13 2000 trn
116\c psftp> quit
117
421406a4 118\S{psftp-option-be} \I{-be-PSFTP}\c{-be}: continue batch processing on errors
9a313f60 119
f45c22d6 120When running a batch file, this additional option causes PSFTP to
121continue processing even if a command fails to complete successfully.
9a313f60 122
123You might want this to happen if you wanted to delete a file and
124didn't care if it was already not present, for example.
125
421406a4 126\S{psftp-usage-options-batch} \I{-batch-PSFTP}\c{-batch}: avoid
127interactive prompts
ff2ae367 128
129If you use the \c{-batch} option, PSFTP will never give an
130interactive prompt while establishing the connection. If the
131server's host key is invalid, for example (see \k{gs-hostkey}), then
132the connection will simply be abandoned instead of asking you what
133to do next.
134
135This may help PSFTP's behaviour when it is used in automated
136scripts: using \c{-batch}, if something goes wrong at connection
137time, the batch job will fail rather than hang.
138
9a313f60 139\H{psftp-commands} Running PSFTP
140
141Once you have started your PSFTP session, you will see a \c{psftp>}
142prompt. You can now type commands to perform file-transfer
143functions. This section lists all the available commands.
144
421406a4 145\S{psftp-quoting} \I{quoting, in PSFTP}General quoting rules for PSFTP commands
3af97463 146
147Most PSFTP commands are considered by the PSFTP command interpreter
148as a sequence of words, separated by spaces. For example, the
149command \c{ren oldfilename newfilename} splits up into three words:
150\c{ren} (the command name), \c{oldfilename} (the name of the file to
151be renamed), and \c{newfilename} (the new name to give the file).
152
421406a4 153Sometimes you will need to specify \I{spaces in filenames}file names
154that \e{contain} spaces. In order to do this, you can surround
155the file name with double quotes. This works equally well for
156local file names and remote file names:
3af97463 157
158\c psftp> get "spacey file name.txt" "save it under this name.txt"
159
160The double quotes themselves will not appear as part of the file
161names; they are removed by PSFTP and their only effect is to stop
162the spaces inside them from acting as word separators.
163
164If you need to \e{use} a double quote (on some types of remote
165system, such as Unix, you are allowed to use double quotes in file
166names), you can do this by doubling it. This works both inside and
167outside double quotes. For example, this command
168
169\c psftp> ren ""this"" "a file with ""quotes"" in it"
170
171will take a file whose current name is \c{"this"} (with a double
172quote character at the beginning and the end) and rename it to a
173file whose name is \c{a file with "quotes" in it}.
174
175(The one exception to the PSFTP quoting rules is the \c{!} command,
176which passes its command line straight to Windows without splitting
177it up into words at all. See \k{psftp-cmd-pling}.)
178
9d210cac 179\S{psftp-wildcards} Wildcards in PSFTP
180
421406a4 181Several commands in PSFTP support \q{\i{wildcards}} to select multiple
9d210cac 182files.
183
184For \e{local} file specifications (such as the first argument to
185\c{put}), wildcard rules for the local operating system are used. For
186instance, PSFTP running on Windows might require the use of \c{*.*}
187where PSFTP on Unix would need \c{*}.
188
189For \e{remote} file specifications (such as the first argument to
421406a4 190\c{get}), PSFTP uses a standard wildcard syntax (similar to \i{POSIX}
9d210cac 191wildcards):
192
193\b \c{*} matches any sequence of characters (including a zero-length
194sequence).
195
196\b \c{?} matches exactly one character.
197
198\b \c{[abc]} matches exactly one character which can be \cw{a},
199\cw{b}, or \cw{c}.
200
201\lcont{
202
203\c{[a-z]} matches any character in the range \cw{a} to \cw{z}.
204
205\c{[^abc]} matches a single character that is \e{not} \cw{a}, \cw{b},
206or \cw{c}.
207
208Special cases: \c{[-a]} matches a literal hyphen (\cw{-}) or \cw{a};
209\c{[^-a]} matches all other characters. \c{[a^]} matches a literal
210caret (\cw{^}) or \cw{a}.
211
212}
213
214\b \c{\\} (backslash) before any of the above characters (or itself)
215removes that character's special meaning.
216
217A leading period (\cw{.}) on a filename is not treated specially,
218unlike in some Unix contexts; \c{get *} will fetch all files, whether
219or not they start with a leading period.
220
9a313f60 221\S{psftp-cmd-open} The \c{open} command: start a session
222
223If you started PSFTP by double-clicking in the GUI, or just by
224typing \c{psftp} at the command line, you will need to open a
225connection to an SFTP server before you can issue any other
226commands (except \c{help} and \c{quit}).
227
228To create a connection, type \c{open host.name}, or if you need to
229specify a user name as well you can type \c{open user@host.name}.
230
231Once you have issued this command, you will not be able to issue it
232again, \e{even} if the command fails (for example, if you mistype
233the host name or the connection times out). So if the connection is
234not opened successfully, PSFTP will terminate immediately.
235
236\S{psftp-cmd-quit} The \c{quit} command: end your session
237
238When you have finished your session, type the command \c{quit} to
9d210cac 239close the connection, terminate PSFTP and return to the command line
240(or just close the PSFTP console window if you started it from the
241GUI).
9a313f60 242
243You can also use the \c{bye} and \c{exit} commands, which have
244exactly the same effect.
245
9d210cac 246\S{psftp-cmd-close} The \c{close} command: close your connection
247
248If you just want to close the network connection but keep PSFTP
249running, you can use the \c{close} command. You can then use the
250\c{open} command to open a new connection.
251
9a313f60 252\S{psftp-cmd-help} The \c{help} command: get quick online help
253
254If you type \c{help}, PSFTP will give a short list of the available
255commands.
256
257If you type \c{help} with a command name - for example, \c{help get}
258- then PSFTP will give a short piece of help on that particular
259command.
260
261\S{psftp-cmd-cd} The \c{cd} and \c{pwd} commands: changing the
421406a4 262remote \i{working directory}
9a313f60 263
264PSFTP maintains a notion of your \q{working directory} on the
265server. This is the default directory that other commands will
266operate on. For example, if you type \c{get filename.dat} then PSFTP
3af97463 267will look for \c{filename.dat} in your remote working directory on
268the server.
9a313f60 269
25d1ef43 270To change your remote working directory, use the \c{cd} command. If
271you don't provide an argument, \c{cd} will return you to your home
272directory on the server (more precisely, the remote directory you were
273in at the start of the connection).
274
275To display your current remote working directory, type \c{pwd}.
3af97463 276
277\S{psftp-cmd-lcd} The \c{lcd} and \c{lpwd} commands: changing the
421406a4 278local \i{working directory}
3af97463 279
280As well as having a working directory on the remote server, PSFTP
281also has a working directory on your local machine (just like any
282other Windows process). This is the default local directory that
283other commands will operate on. For example, if you type \c{get
284filename.dat} then PSFTP will save the resulting file as
285\c{filename.dat} in your local working directory.
286
287To change your local working directory, use the \c{lcd} command. To
288display your current local working directory, type \c{lpwd}.
9a313f60 289
290\S{psftp-cmd-get} The \c{get} command: fetch a file from the server
291
421406a4 292To \i{download a file} from the server and store it on your local PC,
9a313f60 293you use the \c{get} command.
294
295In its simplest form, you just use this with a file name:
296
297\c get myfile.dat
298
299If you want to store the file locally under a different name,
300specify the local file name after the remote one:
301
302\c get myfile.dat newname.dat
303
304This will fetch the file on the server called \c{myfile.dat}, but
305will save it to your local machine under the name \c{newname.dat}.
306
421406a4 307To fetch an entire directory \i{recursive}ly, you can use the \c{-r}
93e86a8b 308option:
309
310\c get -r mydir
311\c get -r mydir newname
312
313(If you want to fetch a file whose name starts with a hyphen, you
314may have to use the \c{--} special argument, which stops \c{get}
315from interpreting anything as a switch after it. For example,
316\cq{get -- -silly-name-}.)
317
9a313f60 318\S{psftp-cmd-put} The \c{put} command: send a file to the server
319
421406a4 320To \i{upload a file} to the server from your local PC, you use the
9a313f60 321\c{put} command.
322
323In its simplest form, you just use this with a file name:
324
325\c put myfile.dat
326
327If you want to store the file remotely under a different name,
328specify the remote file name after the local one:
329
330\c put myfile.dat newname.dat
331
332This will send the local file called \c{myfile.dat}, but will store
333it on the server under the name \c{newname.dat}.
334
421406a4 335To send an entire directory \i{recursive}ly, you can use the \c{-r}
93e86a8b 336option:
337
338\c put -r mydir
339\c put -r mydir newname
340
341(If you want to send a file whose name starts with a hyphen, you may
342have to use the \c{--} special argument, which stops \c{put} from
343interpreting anything as a switch after it. For example, \cq{put --
344-silly-name-}.)
345
9c77ddf6 346\S{psftp-cmd-mgetput} The \c{mget} and \c{mput} commands: fetch or
347send multiple files
348
349\c{mget} works almost exactly like \c{get}, except that it allows
350you to specify more than one file to fetch at once. You can do this
351in two ways:
352
353\b by giving two or more explicit file names (\cq{mget file1.txt
354file2.txt})
355
356\b by using a wildcard (\cq{mget *.txt}).
357
358Every argument to \c{mget} is treated as the name of a file to fetch
359(unlike \c{get}, which will interpret at most one argument like
360that, and a second argument will be treated as an alternative name
421406a4 361under which to store the retrieved file), or a \i{wildcard} expression
9c77ddf6 362matching more than one file.
363
9d210cac 364The \c{-r} and \c{--} options from \c{get} are also available with
365\c{mget}.
366
9c77ddf6 367\c{mput} is similar to \c{put}, with the same differences.
368
9a313f60 369\S{psftp-cmd-regetput} The \c{reget} and \c{reput} commands:
421406a4 370\i{resuming file transfers}
9a313f60 371
372If a file transfer fails half way through, and you end up with half
373the file stored on your disk, you can resume the file transfer using
374the \c{reget} and \c{reput} commands. These work exactly like the
375\c{get} and \c{put} commands, but they check for the presence of the
376half-written destination file and start transferring from where the
377last attempt left off.
378
379The syntax of \c{reget} and \c{reput} is exactly the same as the
380syntax of \c{get} and \c{put}:
381
382\c reget myfile.dat
383\c reget myfile.dat newname.dat
9d210cac 384\c reget -r mydir
385
386These commands are intended mainly for resuming interrupted transfers.
387They assume that the remote file or directory structure has not
388changed in any way; if there have been changes, you may end up with
389corrupted files. In particular, the \c{-r} option will not pick up
390changes to files or directories already transferred in full.
9a313f60 391
421406a4 392\S{psftp-cmd-dir} The \c{dir} command: \I{listing files}list remote files
9a313f60 393
394To list the files in your remote working directory, just type
395\c{dir}.
396
397You can also list the contents of a different directory by typing
398\c{dir} followed by the directory name:
399
400\c dir /home/fred
401\c dir sources
402
3394416c 403And you can list a subset of the contents of a directory by
404providing a wildcard:
405
406\c dir /home/fred/*.txt
407\c dir sources/*.c
408
9a313f60 409The \c{ls} command works exactly the same way as \c{dir}.
410
411\S{psftp-cmd-chmod} The \c{chmod} command: change permissions on
412remote files
413
421406a4 414\I{changing permissions on files}PSFTP
415allows you to modify the file permissions on files and
c1b8799b 416directories on the server. You do this using the \c{chmod} command,
417which works very much like the Unix \c{chmod} command.
9a313f60 418
419The basic syntax is \c{chmod modes file}, where \c{modes} represents
420a modification to the file permissions, and \c{file} is the filename
c1b8799b 421to modify. You can specify multiple files or wildcards. For example:
9a313f60 422
423\c chmod go-rwx,u+w privatefile
c1b8799b 424\c chmod a+r public*
425\c chmod 640 groupfile1 groupfile2
9a313f60 426
427The \c{modes} parameter can be a set of octal digits in the Unix
428style. (If you don't know what this means, you probably don't want
429to be using it!) Alternatively, it can be a list of permission
430modifications, separated by commas. Each modification consists of:
431
432\b The people affected by the modification. This can be \c{u} (the
433owning user), \c{g} (members of the owning group), or \c{o}
434(everybody else - \q{others}), or some combination of those. It can
435also be \c{a} (\q{all}) to affect everybody at once.
436
437\b A \c{+} or \c{-} sign, indicating whether permissions are to be
438added or removed.
439
421406a4 440\b The actual permissions being added or removed. These can be
441\I{read permission}\c{r} (permission to read the file),
442\I{write permission}\c{w} (permission to write to the file), and
443\I{execute permission}\c{x} (permission to execute the file, or in
444the case of a directory, permission to access files within the
445directory).
9a313f60 446
447So the above examples would do:
448
449\b The first example: \c{go-rwx} removes read, write and execute
450permissions for members of the owning group and everybody else (so
451the only permissions left are the ones for the file owner). \c{u+w}
452adds write permission for the file owner.
453
c1b8799b 454\b The second example: \c{a+r} adds read permission for everybody to
455all files and directories starting with \q{public}.
9a313f60 456
457In addition to all this, there are a few extra special cases for
421406a4 458\i{Unix} systems. On non-Unix systems these are unlikely to be useful:
9a313f60 459
460\b You can specify \c{u+s} and \c{u-s} to add or remove the Unix
421406a4 461\i{set-user-ID bit}. This is typically only useful for special purposes;
9a313f60 462refer to your Unix documentation if you're not sure about it.
463
464\b You can specify \c{g+s} and \c{g-s} to add or remove the Unix
421406a4 465\i{set-group-ID bit}. On a file, this works similarly to the set-user-ID
9a313f60 466bit (see your Unix documentation again); on a directory it ensures
467that files created in the directory are accessible by members of the
468group that owns the directory.
469
470\b You can specify \c{+t} and \c{-t} to add or remove the Unix
421406a4 471\q{\i{sticky bit}}. When applied to a directory, this means that the
9a313f60 472owner of a file in that directory can delete the file (whereas
473normally only the owner of the \e{directory} would be allowed to).
474
475\S{psftp-cmd-del} The \c{del} command: delete remote files
476
421406a4 477To \I{deleting files}delete a file on the server, type \c{del} and
478then the filename or filenames:
9a313f60 479
480\c del oldfile.dat
c1b8799b 481\c del file1.txt file2.txt
482\c del *.o
483
484Files will be deleted without further prompting, even if multiple files
485are specified.
486
487\c{del} will only delete files. You cannot use it to delete
488directories; use \c{rmdir} for that.
9a313f60 489
490The \c{rm} command works exactly the same way as \c{del}.
491
492\S{psftp-cmd-mkdir} The \c{mkdir} command: create remote directories
493
421406a4 494To \i{create a directory} on the server, type \c{mkdir} and then the
9a313f60 495directory name:
496
497\c mkdir newstuff
498
c1b8799b 499You can specify multiple directories to create at once:
500
501\c mkdir dir1 dir2 dir3
502
9a313f60 503\S{psftp-cmd-rmdir} The \c{rmdir} command: remove remote directories
504
421406a4 505To \i{remove a directory} on the server, type \c{rmdir} and then the
c1b8799b 506directory name or names:
9a313f60 507
508\c rmdir oldstuff
c1b8799b 509\c rmdir *.old ancient
510
511Directories will be deleted without further prompting, even if
512multiple directories are specified.
9a313f60 513
514Most SFTP servers will probably refuse to remove a directory if the
515directory has anything in it, so you will need to delete the
516contents first.
517
421406a4 518\S{psftp-cmd-mv} The \c{mv} command: move and \i{rename remote files}
c1b8799b 519
520To rename a single file on the server, type \c{mv}, then the current
521file name, and then the new file name:
522
523\c mv oldfile newname
524
525You can also move the file into a different directory and change the
526name:
527
528\c mv oldfile dir/newname
9a313f60 529
c1b8799b 530To move one or more files into an existing subdirectory, specify the
531files (using wildcards if desired), and then the destination
532directory:
9a313f60 533
c1b8799b 534\c mv file dir
535\c mv file1 dir1/file2 dir2
536\c mv *.c *.h ..
9a313f60 537
c1b8799b 538The \c{rename} and \c{ren} commands work exactly the same way as
539\c{mv}.
eb4f8180 540
421406a4 541\S{psftp-cmd-pling} The \c{!} command: run a \i{local Windows command}
3af97463 542
543You can run local Windows commands using the \c{!} command. This is
544the only PSFTP command that is not subject to the command quoting
545rules given in \k{psftp-quoting}. If any command line begins with
546the \c{!} character, then the rest of the line will be passed
547straight to Windows without further translation.
548
549For example, if you want to move an existing copy of a file out of
550the way before downloading an updated version, you might type:
551
552\c psftp> !ren myfile.dat myfile.bak
553\c psftp> get myfile.dat
554
555using the Windows \c{ren} command to rename files on your local PC.
556
421406a4 557\H{psftp-pubkey} Using \i{public key authentication} with PSFTP
eb4f8180 558
559Like PuTTY, PSFTP can authenticate using a public key instead of a
870239d3 560password. There are three ways you can do this.
eb4f8180 561
562Firstly, PSFTP can use PuTTY saved sessions in place of hostnames.
563So you might do this:
564
565\b Run PuTTY, and create a PuTTY saved session (see
566\k{config-saving}) which specifies your private key file (see
567\k{config-ssh-privkey}). You will probably also want to specify a
568username to log in as (see \k{config-username}).
569
570\b In PSFTP, you can now use the name of the session instead of a
571hostname: type \c{psftp sessionname}, where \c{sessionname} is
572replaced by the name of your saved session.
573
870239d3 574Secondly, you can supply the name of a private key file on the command
575line, with the \c{-i} option. See \k{using-cmdline-identity} for more
576information.
577
578Thirdly, PSFTP will attempt to authenticate using Pageant if Pageant
eb4f8180 579is running (see \k{pageant}). So you would do this:
580
581\b Ensure Pageant is running, and has your private key stored in it.
582
583\b Specify a user and host name to PSFTP as normal. PSFTP will
584automatically detect Pageant and try to use the keys within it.
585
586For more general information on public-key authentication, see
587\k{pubkey}.