diff options
author | 2017-08-29 09:42:29 +0000 | |
---|---|---|
committer | 2017-08-29 09:42:29 +0000 | |
commit | 716dacf9cb25bcadb301f091225682071cc5f1d1 (patch) | |
tree | 7c576b4a955584182858ee0fb198964f5246f5e4 /usr.bin/ssh/ssh-add.1 | |
parent | Support REP escape sequence (\033[b). (diff) | |
download | wireguard-openbsd-716dacf9cb25bcadb301f091225682071cc5f1d1.tar.xz wireguard-openbsd-716dacf9cb25bcadb301f091225682071cc5f1d1.zip |
add a -q option to ssh-add to make it quiet on success.
if you want to silence ssh-add without this you generally redirect
the output to /dev/null, but that can hide error output which you
should see.
ok djm@
Diffstat (limited to 'usr.bin/ssh/ssh-add.1')
-rw-r--r-- | usr.bin/ssh/ssh-add.1 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-add.1 b/usr.bin/ssh/ssh-add.1 index 509d8fb4754..471a23e7c40 100644 --- a/usr.bin/ssh/ssh-add.1 +++ b/usr.bin/ssh/ssh-add.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ssh-add.1,v 1.64 2017/05/05 10:41:58 naddy Exp $ +.\" $OpenBSD: ssh-add.1,v 1.65 2017/08/29 09:42:29 dlg Exp $ .\" .\" Author: Tatu Ylonen <ylo@cs.hut.fi> .\" Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -35,7 +35,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: May 5 2017 $ +.Dd $Mdocdate: August 29 2017 $ .Dt SSH-ADD 1 .Os .Sh NAME @@ -43,7 +43,7 @@ .Nd adds private key identities to the authentication agent .Sh SYNOPSIS .Nm ssh-add -.Op Fl cDdkLlXx +.Op Fl cDdkLlqXx .Op Fl E Ar fingerprint_hash .Op Fl t Ar life .Op Ar @@ -134,6 +134,8 @@ Set a maximum lifetime when adding identities to an agent. The lifetime may be specified in seconds or in a time format specified in .Xr sshd_config 5 . +.It Fl q +Be quiet after a successful operation. .It Fl X Unlock the agent. .It Fl x |