Ssh Suppress Verbose Output: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * ssh") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Ssh#Client_Operations|ssh]] | * [[Ssh#Client_Operations|ssh]] | ||
=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> |
Revision as of 23:55, 22 February 2016
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 ...