diff options
author | djm@openbsd.org <djm@openbsd.org> | 2018-11-16 03:30:20 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-11-16 03:51:58 +0100 |
commit | 5c1a63562cac0574c226224075b0829a50b48c9d (patch) | |
tree | b6b6ad2964a1fd120f6ed06a5be2d8e3ff7df808 /sftp.1 | |
parent | upstream: fix markup error (missing blank before delimiter); from (diff) | |
download | openssh-5c1a63562cac0574c226224075b0829a50b48c9d.tar.xz openssh-5c1a63562cac0574c226224075b0829a50b48c9d.zip |
upstream: support a prefix of '@' to suppress echo of sftp batch
commands; bz#2926; ok dtucker@
OpenBSD-Commit-ID: 9d635636bc84aeae796467e059f7634de990a79d
Diffstat (limited to 'sftp.1')
-rw-r--r-- | sftp.1 | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,4 +1,4 @@ -.\" $OpenBSD: sftp.1,v 1.121 2018/11/13 07:22:45 schwarze Exp $ +.\" $OpenBSD: sftp.1,v 1.122 2018/11/16 02:30:20 djm Exp $ .\" .\" Copyright (c) 2001 Damien Miller. All rights reserved. .\" @@ -22,7 +22,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: November 13 2018 $ +.Dd $Mdocdate: November 16 2018 $ .Dt SFTP 1 .Os .Sh NAME @@ -127,6 +127,7 @@ at connection time (see and .Xr ssh-keygen 1 for details). +.Pp A .Ar batchfile of @@ -141,11 +142,17 @@ commands fail: .Ic chgrp , lpwd , df , symlink , and .Ic lmkdir . +.Pp Termination on error can be suppressed on a command by command basis by prefixing the command with a .Sq \- character (for example, .Ic -rm /tmp/blah* ) . +Echo of the command may be suppressed by prefixing the command with a +.Sq @ +character. +These two prefixes may be combined in any order, for example +.Ic -@ls /bsd . .It Fl C Enables compression (via ssh's .Fl C |