psftp.but 21 KB

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