[BACK]Return to sftp.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/sftp.1, Revision 1.109

1.109   ! jmc         1: .\" $OpenBSD: sftp.1,v 1.108 2017/05/02 14:06:37 jmc Exp $
1.1       djm         2: .\"
1.9       deraadt     3: .\" Copyright (c) 2001 Damien Miller.  All rights reserved.
1.1       djm         4: .\"
                      5: .\" Redistribution and use in source and binary forms, with or without
                      6: .\" modification, are permitted provided that the following conditions
                      7: .\" are met:
                      8: .\" 1. Redistributions of source code must retain the above copyright
                      9: .\"    notice, this list of conditions and the following disclaimer.
                     10: .\" 2. Redistributions in binary form must reproduce the above copyright
                     11: .\"    notice, this list of conditions and the following disclaimer in the
                     12: .\"    documentation and/or other materials provided with the distribution.
                     13: .\"
                     14: .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     15: .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     16: .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     17: .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     18: .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     19: .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     20: .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     21: .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     22: .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     23: .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     24: .\"
1.107     jmc        25: .Dd $Mdocdate: May 2 2017 $
1.1       djm        26: .Dt SFTP 1
                     27: .Os
                     28: .Sh NAME
                     29: .Nm sftp
1.44      jmc        30: .Nd secure file transfer program
1.1       djm        31: .Sh SYNOPSIS
1.43      jmc        32: .Nm sftp
1.41      jmc        33: .Bk -words
1.106     djm        34: .Op Fl 46aCfpqrv
1.46      jmc        35: .Op Fl B Ar buffer_size
1.29      markus     36: .Op Fl b Ar batchfile
1.70      djm        37: .Op Fl c Ar cipher
1.72      djm        38: .Op Fl D Ar sftp_server_path
1.46      jmc        39: .Op Fl F Ar ssh_config
1.73      jmc        40: .Op Fl i Ar identity_file
1.85      djm        41: .Op Fl l Ar limit
1.29      markus     42: .Op Fl o Ar ssh_option
1.72      djm        43: .Op Fl P Ar port
1.30      djm        44: .Op Fl R Ar num_requests
1.26      stevesk    45: .Op Fl S Ar program
1.46      jmc        46: .Op Fl s Ar subsystem | sftp_server
1.26      stevesk    47: .Ar host
1.41      jmc        48: .Ek
1.43      jmc        49: .Nm sftp
1.68      djm        50: .Oo Ar user Ns @ Oc Ns
                     51: .Ar host Ns Op : Ns Ar
1.43      jmc        52: .Nm sftp
1.84      jmc        53: .Oo
                     54: .Ar user Ns @ Oc Ns
1.41      jmc        55: .Ar host Ns Oo : Ns Ar dir Ns
1.84      jmc        56: .Op Ar /
                     57: .Oc
1.43      jmc        58: .Nm sftp
1.42      djm        59: .Fl b Ar batchfile
1.45      jmc        60: .Oo Ar user Ns @ Oc Ns Ar host
1.1       djm        61: .Sh DESCRIPTION
                     62: .Nm
                     63: is an interactive file transfer program, similar to
                     64: .Xr ftp 1 ,
                     65: which performs all operations over an encrypted
                     66: .Xr ssh 1
                     67: transport.
                     68: It may also use many features of ssh, such as public key authentication and
                     69: compression.
                     70: .Nm
                     71: connects and logs into the specified
1.18      stevesk    72: .Ar host ,
1.1       djm        73: then enters an interactive command mode.
1.15      mouring    74: .Pp
1.21      itojun     75: The second usage format will retrieve files automatically if a non-interactive
1.18      stevesk    76: authentication method is used; otherwise it will do so after
                     77: successful interactive authentication.
1.15      mouring    78: .Pp
1.60      jaredy     79: The third usage format allows
                     80: .Nm
                     81: to start in a remote directory.
1.1       djm        82: .Pp
1.44      jmc        83: The final usage format allows for automated sessions using the
1.42      djm        84: .Fl b
1.44      jmc        85: option.
1.62      jmc        86: In such cases, it is necessary to configure non-interactive authentication
1.44      jmc        87: to obviate the need to enter a password at connection time (see
1.42      djm        88: .Xr sshd 8
1.43      jmc        89: and
1.42      djm        90: .Xr ssh-keygen 1
1.44      jmc        91: for details).
1.89      djm        92: .Pp
                     93: Since some usage formats use colon characters to delimit host names from path
                     94: names, IPv6 addresses must be enclosed in square brackets to avoid ambiguity.
                     95: .Pp
1.1       djm        96: The options are as follows:
                     97: .Bl -tag -width Ds
1.70      djm        98: .It Fl 4
                     99: Forces
                    100: .Nm
                    101: to use IPv4 addresses only.
                    102: .It Fl 6
                    103: Forces
                    104: .Nm
                    105: to use IPv6 addresses only.
1.94      jmc       106: .It Fl a
1.99      jmc       107: Attempt to continue interrupted transfers rather than overwriting
1.98      logan     108: existing partial or complete copies of files.
1.99      jmc       109: If the partial contents differ from those being transferred,
1.98      logan     110: then the resultant file is likely to be corrupt.
1.46      jmc       111: .It Fl B Ar buffer_size
                    112: Specify the size of the buffer that
                    113: .Nm
                    114: uses when transferring files.
                    115: Larger buffers require fewer round trips at the cost of higher
                    116: memory consumption.
                    117: The default is 32768 bytes.
1.10      deraadt   118: .It Fl b Ar batchfile
                    119: Batch mode reads a series of commands from an input
1.13      stevesk   120: .Ar batchfile
1.10      deraadt   121: instead of
1.13      stevesk   122: .Em stdin .
                    123: Since it lacks user interaction it should be used in conjunction with
1.51      jmc       124: non-interactive authentication.
1.50      djm       125: A
1.51      jmc       126: .Ar batchfile
                    127: of
                    128: .Sq \-
1.50      djm       129: may be used to indicate standard input.
1.13      stevesk   130: .Nm
1.21      itojun    131: will abort if any of the following
                    132: commands fail:
1.98      logan     133: .Ic get , put , reget , reput, rename , ln ,
1.41      jmc       134: .Ic rm , mkdir , chdir , ls ,
1.66      jmc       135: .Ic lchdir , chmod , chown ,
1.88      djm       136: .Ic chgrp , lpwd , df , symlink ,
1.10      deraadt   137: and
1.13      stevesk   138: .Ic lmkdir .
1.41      jmc       139: Termination on error can be suppressed on a command by command basis by
                    140: prefixing the command with a
1.51      jmc       141: .Sq \-
1.44      jmc       142: character (for example,
                    143: .Ic -rm /tmp/blah* ) .
1.71      jmc       144: .It Fl C
                    145: Enables compression (via ssh's
                    146: .Fl C
                    147: flag).
1.70      djm       148: .It Fl c Ar cipher
                    149: Selects the cipher to use for encrypting the data transfers.
                    150: This option is directly passed to
                    151: .Xr ssh 1 .
1.72      djm       152: .It Fl D Ar sftp_server_path
                    153: Connect directly to a local sftp server
                    154: (rather than via
                    155: .Xr ssh 1 ) .
                    156: This option may be useful in debugging the client and server.
1.46      jmc       157: .It Fl F Ar ssh_config
                    158: Specifies an alternative
                    159: per-user configuration file for
                    160: .Xr ssh 1 .
                    161: This option is directly passed to
                    162: .Xr ssh 1 .
1.95      djm       163: .It Fl f
                    164: Requests that files be flushed to disk immediately after transfer.
                    165: When uploading files, this feature is only enabled if the server
                    166: implements the "fsync@openssh.com" extension.
1.70      djm       167: .It Fl i Ar identity_file
                    168: Selects the file from which the identity (private key) for public key
                    169: authentication is read.
                    170: This option is directly passed to
                    171: .Xr ssh 1 .
1.85      djm       172: .It Fl l Ar limit
                    173: Limits the used bandwidth, specified in Kbit/s.
1.1       djm       174: .It Fl o Ar ssh_option
1.23      stevesk   175: Can be used to pass options to
                    176: .Nm ssh
1.35      stevesk   177: in the format used in
                    178: .Xr ssh_config 5 .
                    179: This is useful for specifying options
1.23      stevesk   180: for which there is no separate
                    181: .Nm sftp
1.44      jmc       182: command-line flag.
                    183: For example, to specify an alternate port use:
1.26      stevesk   184: .Ic sftp -oPort=24 .
1.46      jmc       185: For full details of the options listed below, and their possible values, see
                    186: .Xr ssh_config 5 .
                    187: .Pp
                    188: .Bl -tag -width Ds -offset indent -compact
                    189: .It AddressFamily
                    190: .It BatchMode
                    191: .It BindAddress
1.97      djm       192: .It CanonicalDomains
                    193: .It CanonicalizeFallbackLocal
                    194: .It CanonicalizeHostname
                    195: .It CanonicalizeMaxDots
                    196: .It CanonicalizePermittedCNAMEs
1.102     jmc       197: .It CertificateFile
1.46      jmc       198: .It ChallengeResponseAuthentication
                    199: .It CheckHostIP
                    200: .It Ciphers
                    201: .It Compression
1.54      dtucker   202: .It ConnectTimeout
1.55      djm       203: .It ControlMaster
                    204: .It ControlPath
1.91      djm       205: .It ControlPersist
1.46      jmc       206: .It GlobalKnownHostsFile
                    207: .It GSSAPIAuthentication
                    208: .It GSSAPIDelegateCredentials
1.61      jmc       209: .It HashKnownHosts
1.46      jmc       210: .It Host
                    211: .It HostbasedAuthentication
1.101     djm       212: .It HostbasedKeyTypes
1.46      jmc       213: .It HostKeyAlgorithms
                    214: .It HostKeyAlias
                    215: .It HostName
1.104     jmc       216: .It IdentitiesOnly
1.103     markus    217: .It IdentityAgent
1.46      jmc       218: .It IdentityFile
1.87      jmc       219: .It IPQoS
1.91      djm       220: .It KbdInteractiveAuthentication
1.58      djm       221: .It KbdInteractiveDevices
1.86      jmc       222: .It KexAlgorithms
1.46      jmc       223: .It LogLevel
                    224: .It MACs
                    225: .It NoHostAuthenticationForLocalhost
                    226: .It NumberOfPasswordPrompts
                    227: .It PasswordAuthentication
1.83      markus    228: .It PKCS11Provider
1.46      jmc       229: .It Port
                    230: .It PreferredAuthentications
                    231: .It ProxyCommand
1.105     jmc       232: .It ProxyJump
1.108     jmc       233: .It PubkeyAcceptedKeyTypes
1.46      jmc       234: .It PubkeyAuthentication
1.63      dtucker   235: .It RekeyLimit
1.53      jmc       236: .It SendEnv
1.49      markus    237: .It ServerAliveInterval
                    238: .It ServerAliveCountMax
1.46      jmc       239: .It StrictHostKeyChecking
1.48      markus    240: .It TCPKeepAlive
1.100     djm       241: .It UpdateHostKeys
1.46      jmc       242: .It UsePrivilegedPort
                    243: .It User
                    244: .It UserKnownHostsFile
                    245: .It VerifyHostKeyDNS
                    246: .El
1.72      djm       247: .It Fl P Ar port
                    248: Specifies the port to connect to on the remote host.
1.74      djm       249: .It Fl p
                    250: Preserves modification times, access times, and modes from the
                    251: original files transferred.
1.70      djm       252: .It Fl q
                    253: Quiet mode: disables the progress meter as well as warning and
                    254: diagnostic messages from
                    255: .Xr ssh 1 .
1.30      djm       256: .It Fl R Ar num_requests
1.44      jmc       257: Specify how many requests may be outstanding at any one time.
                    258: Increasing this may slightly improve file transfer speed
                    259: but will increase memory usage.
1.67      djm       260: The default is 64 outstanding requests.
1.74      djm       261: .It Fl r
                    262: Recursively copy entire directories when uploading and downloading.
                    263: Note that
                    264: .Nm
                    265: does not follow symbolic links encountered in the tree traversal.
1.26      stevesk   266: .It Fl S Ar program
                    267: Name of the
                    268: .Ar program
                    269: to use for the encrypted connection.
                    270: The program must understand
                    271: .Xr ssh 1
                    272: options.
1.46      jmc       273: .It Fl s Ar subsystem | sftp_server
                    274: Specifies the SSH2 subsystem or the path for an sftp server
                    275: on the remote host.
1.109   ! jmc       276: A path is useful when the remote
1.46      jmc       277: .Xr sshd 8
                    278: does not have an sftp subsystem configured.
                    279: .It Fl v
                    280: Raise logging level.
                    281: This option is also passed to ssh.
1.1       djm       282: .El
                    283: .Sh INTERACTIVE COMMANDS
1.2       djm       284: Once in interactive mode,
                    285: .Nm
1.21      itojun    286: understands a set of commands similar to those of
1.1       djm       287: .Xr ftp 1 .
1.60      jaredy    288: Commands are case insensitive.
                    289: Pathnames that contain spaces must be enclosed in quotes.
                    290: Any special characters contained within pathnames that are recognized by
                    291: .Xr glob 3
                    292: must be escaped with backslashes
                    293: .Pq Sq \e .
                    294: .Bl -tag -width Ds
1.22      markus    295: .It Ic bye
1.44      jmc       296: Quit
                    297: .Nm sftp .
1.3       deraadt   298: .It Ic cd Ar path
1.21      itojun    299: Change remote directory to
1.3       deraadt   300: .Ar path .
                    301: .It Ic chgrp Ar grp Ar path
1.21      itojun    302: Change group of file
1.5       stevesk   303: .Ar path
                    304: to
1.1       djm       305: .Ar grp .
1.60      jaredy    306: .Ar path
                    307: may contain
                    308: .Xr glob 3
                    309: characters and may match multiple files.
1.1       djm       310: .Ar grp
1.5       stevesk   311: must be a numeric GID.
1.3       deraadt   312: .It Ic chmod Ar mode Ar path
1.21      itojun    313: Change permissions of file
1.5       stevesk   314: .Ar path
                    315: to
1.3       deraadt   316: .Ar mode .
1.60      jaredy    317: .Ar path
                    318: may contain
                    319: .Xr glob 3
                    320: characters and may match multiple files.
1.3       deraadt   321: .It Ic chown Ar own Ar path
1.21      itojun    322: Change owner of file
1.5       stevesk   323: .Ar path
                    324: to
1.1       djm       325: .Ar own .
1.60      jaredy    326: .Ar path
                    327: may contain
                    328: .Xr glob 3
                    329: characters and may match multiple files.
1.1       djm       330: .Ar own
                    331: must be a numeric UID.
1.65      djm       332: .It Xo Ic df
                    333: .Op Fl hi
                    334: .Op Ar path
                    335: .Xc
                    336: Display usage information for the filesystem holding the current directory
                    337: (or
                    338: .Ar path
                    339: if specified).
                    340: If the
                    341: .Fl h
                    342: flag is specified, the capacity information will be displayed using
                    343: "human-readable" suffixes.
                    344: The
                    345: .Fl i
                    346: flag requests display of inode information in addition to capacity information.
                    347: This command is only supported on servers that implement the
                    348: .Dq statvfs@openssh.com
                    349: extension.
1.11      deraadt   350: .It Ic exit
1.44      jmc       351: Quit
                    352: .Nm sftp .
1.7       djm       353: .It Xo Ic get
1.95      djm       354: .Op Fl afPpr
1.7       djm       355: .Ar remote-path
                    356: .Op Ar local-path
                    357: .Xc
1.1       djm       358: Retrieve the
1.5       stevesk   359: .Ar remote-path
1.1       djm       360: and store it on the local machine.
                    361: If the local
1.21      itojun    362: path name is not specified, it is given the same name it has on the
1.44      jmc       363: remote machine.
1.60      jaredy    364: .Ar remote-path
                    365: may contain
                    366: .Xr glob 3
                    367: characters and may match multiple files.
                    368: If it does and
                    369: .Ar local-path
                    370: is specified, then
                    371: .Ar local-path
                    372: must specify a directory.
1.74      djm       373: .Pp
1.92      djm       374: If the
                    375: .Fl a
                    376: flag is specified, then attempt to resume partial transfers of existing files.
                    377: Note that resumption assumes that any partial copy of the local file matches
                    378: the remote copy.
1.93      djm       379: If the remote file contents differ from the partial local copy then the
                    380: resultant file is likely to be corrupt.
1.92      djm       381: .Pp
1.95      djm       382: If the
                    383: .Fl f
                    384: flag is specified, then
                    385: .Xr fsync 2
1.96      jmc       386: will be called after the file transfer has completed to flush the file
1.95      djm       387: to disk.
                    388: .Pp
1.76      jmc       389: If either the
1.75      djm       390: .Fl P
1.74      djm       391: or
                    392: .Fl p
1.60      jaredy    393: flag is specified, then full file permissions and access times are
1.7       djm       394: copied too.
1.74      djm       395: .Pp
                    396: If the
                    397: .Fl r
                    398: flag is specified then directories will be copied recursively.
                    399: Note that
                    400: .Nm
                    401: does not follow symbolic links when performing recursive transfers.
1.11      deraadt   402: .It Ic help
                    403: Display help text.
1.46      jmc       404: .It Ic lcd Ar path
                    405: Change local directory to
                    406: .Ar path .
1.3       deraadt   407: .It Ic lls Op Ar ls-options Op Ar path
1.21      itojun    408: Display local directory listing of either
1.1       djm       409: .Ar path
                    410: or current directory if
                    411: .Ar path
1.5       stevesk   412: is not specified.
1.60      jaredy    413: .Ar ls-options
                    414: may contain any flags supported by the local system's
                    415: .Xr ls 1
                    416: command.
                    417: .Ar path
                    418: may contain
                    419: .Xr glob 3
                    420: characters and may match multiple files.
1.3       deraadt   421: .It Ic lmkdir Ar path
1.1       djm       422: Create local directory specified by
1.3       deraadt   423: .Ar path .
1.88      djm       424: .It Xo Ic ln
                    425: .Op Fl s
                    426: .Ar oldpath
                    427: .Ar newpath
                    428: .Xc
                    429: Create a link from
1.12      djm       430: .Ar oldpath
                    431: to
                    432: .Ar newpath .
1.88      djm       433: If the
                    434: .Fl s
                    435: flag is specified the created link is a symbolic link, otherwise it is
                    436: a hard link.
1.3       deraadt   437: .It Ic lpwd
                    438: Print local working directory.
1.36      djm       439: .It Xo Ic ls
1.82      jmc       440: .Op Fl 1afhlnrSt
1.36      djm       441: .Op Ar path
                    442: .Xc
1.60      jaredy    443: Display a remote directory listing of either
1.1       djm       444: .Ar path
1.60      jaredy    445: or the current directory if
1.5       stevesk   446: .Ar path
1.44      jmc       447: is not specified.
1.60      jaredy    448: .Ar path
                    449: may contain
                    450: .Xr glob 3
                    451: characters and may match multiple files.
                    452: .Pp
                    453: The following flags are recognized and alter the behaviour of
                    454: .Ic ls
                    455: accordingly:
                    456: .Bl -tag -width Ds
                    457: .It Fl 1
                    458: Produce single columnar output.
                    459: .It Fl a
                    460: List files beginning with a dot
                    461: .Pq Sq \&. .
                    462: .It Fl f
                    463: Do not sort the listing.
                    464: The default sort order is lexicographical.
1.81      djm       465: .It Fl h
                    466: When used with a long format option, use unit suffixes: Byte, Kilobyte,
                    467: Megabyte, Gigabyte, Terabyte, Petabyte, and Exabyte in order to reduce
                    468: the number of digits to four or fewer using powers of 2 for sizes (K=1024,
                    469: M=1048576, etc.).
1.82      jmc       470: .It Fl l
                    471: Display additional details including permissions
                    472: and ownership information.
1.60      jaredy    473: .It Fl n
                    474: Produce a long listing with user and group information presented
1.56      djm       475: numerically.
1.60      jaredy    476: .It Fl r
                    477: Reverse the sort order of the listing.
                    478: .It Fl S
                    479: Sort the listing by file size.
                    480: .It Fl t
                    481: Sort the listing by last modification time.
                    482: .El
1.3       deraadt   483: .It Ic lumask Ar umask
1.21      itojun    484: Set local umask to
1.3       deraadt   485: .Ar umask .
                    486: .It Ic mkdir Ar path
1.1       djm       487: Create remote directory specified by
1.3       deraadt   488: .Ar path .
1.40      fgsch     489: .It Ic progress
                    490: Toggle display of progress meter.
1.7       djm       491: .It Xo Ic put
1.98      logan     492: .Op Fl afPpr
1.7       djm       493: .Ar local-path
1.37      djm       494: .Op Ar remote-path
1.7       djm       495: .Xc
1.1       djm       496: Upload
1.5       stevesk   497: .Ar local-path
1.44      jmc       498: and store it on the remote machine.
                    499: If the remote path name is not specified, it is given the same name it has
                    500: on the local machine.
1.60      jaredy    501: .Ar local-path
                    502: may contain
                    503: .Xr glob 3
                    504: characters and may match multiple files.
                    505: If it does and
                    506: .Ar remote-path
                    507: is specified, then
                    508: .Ar remote-path
                    509: must specify a directory.
1.95      djm       510: .Pp
                    511: If the
1.99      jmc       512: .Fl a
1.98      logan     513: flag is specified, then attempt to resume partial
                    514: transfers of existing files.
1.99      jmc       515: Note that resumption assumes that any partial copy of the remote file
1.98      logan     516: matches the local copy.
                    517: If the local file contents differ from the remote local copy then
                    518: the resultant file is likely to be corrupt.
                    519: .Pp
                    520: If the
1.95      djm       521: .Fl f
                    522: flag is specified, then a request will be sent to the server to call
                    523: .Xr fsync 2
                    524: after the file has been transferred.
                    525: Note that this is only supported by servers that implement
                    526: the "fsync@openssh.com" extension.
1.74      djm       527: .Pp
1.90      dtucker   528: If either the
1.7       djm       529: .Fl P
1.74      djm       530: or
                    531: .Fl p
                    532: flag is specified, then full file permissions and access times are
1.7       djm       533: copied too.
1.74      djm       534: .Pp
                    535: If the
                    536: .Fl r
                    537: flag is specified then directories will be copied recursively.
                    538: Note that
                    539: .Nm
                    540: does not follow symbolic links when performing recursive transfers.
1.3       deraadt   541: .It Ic pwd
                    542: Display remote working directory.
                    543: .It Ic quit
1.44      jmc       544: Quit
                    545: .Nm sftp .
1.92      djm       546: .It Xo Ic reget
                    547: .Op Fl Ppr
                    548: .Ar remote-path
                    549: .Op Ar local-path
                    550: .Xc
                    551: Resume download of
                    552: .Ar remote-path .
                    553: Equivalent to
                    554: .Ic get
                    555: with the
1.98      logan     556: .Fl a
                    557: flag set.
                    558: .It Xo Ic reput
                    559: .Op Fl Ppr
                    560: .Op Ar local-path
                    561: .Ar remote-path
                    562: .Xc
                    563: Resume upload of
                    564: .Op Ar local-path .
                    565: Equivalent to
                    566: .Ic put
1.99      jmc       567: with the
1.92      djm       568: .Fl a
                    569: flag set.
1.3       deraadt   570: .It Ic rename Ar oldpath Ar newpath
1.1       djm       571: Rename remote file from
                    572: .Ar oldpath
                    573: to
1.3       deraadt   574: .Ar newpath .
1.46      jmc       575: .It Ic rm Ar path
                    576: Delete remote file specified by
                    577: .Ar path .
1.3       deraadt   578: .It Ic rmdir Ar path
1.1       djm       579: Remove remote directory specified by
1.3       deraadt   580: .Ar path .
1.12      djm       581: .It Ic symlink Ar oldpath Ar newpath
1.21      itojun    582: Create a symbolic link from
1.12      djm       583: .Ar oldpath
                    584: to
                    585: .Ar newpath .
1.38      fgsch     586: .It Ic version
                    587: Display the
                    588: .Nm
                    589: protocol version.
1.69      sobrado   590: .It Ic \&! Ns Ar command
1.21      itojun    591: Execute
1.1       djm       592: .Ar command
1.3       deraadt   593: in local shell.
1.45      jmc       594: .It Ic \&!
1.3       deraadt   595: Escape to local shell.
1.45      jmc       596: .It Ic \&?
1.5       stevesk   597: Synonym for help.
1.4       itojun    598: .El
1.1       djm       599: .Sh SEE ALSO
1.46      jmc       600: .Xr ftp 1 ,
1.60      jaredy    601: .Xr ls 1 ,
1.17      markus    602: .Xr scp 1 ,
1.1       djm       603: .Xr ssh 1 ,
                    604: .Xr ssh-add 1 ,
                    605: .Xr ssh-keygen 1 ,
1.60      jaredy    606: .Xr glob 3 ,
1.35      stevesk   607: .Xr ssh_config 5 ,
1.17      markus    608: .Xr sftp-server 8 ,
                    609: .Xr sshd 8
                    610: .Rs
1.20      deraadt   611: .%A T. Ylonen
                    612: .%A S. Lehtinen
1.17      markus    613: .%T "SSH File Transfer Protocol"
                    614: .%N draft-ietf-secsh-filexfer-00.txt
                    615: .%D January 2001
                    616: .%O work in progress material
                    617: .Re