Ssh Suppress Verbose Output: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * ssh") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[ | * [[OpenSSH Operations#Client_Operations|OpenSSH Client Operations]] | ||
=Overview= | |||
Normally the ssh client output things like: | |||
<pre> | |||
... | |||
Connection to 52.26.128.194 closed. | |||
</pre> | |||
To get rid of that, use <tt>-q</tt> (quiet) flag: | |||
<pre> | |||
ssh -q ... | |||
</pre> |
Latest revision as of 20:35, 2 July 2017
Internal
Overview
Normally the ssh client output things like:
... Connection to 52.26.128.194 closed.
To get rid of that, use -q (quiet) flag:
ssh -q ...