Displaying 1 result from an estimated 1 matches for "configb".
Did you mean:
config
2023 Jan 10
2
[Bug 3519] New: Command line parameter to print out full config
...h/* because that
would cover files that aren't included or otherwise loaded. As I found
myself considering writing my own ssh config preprocessor based on
readconf.c I decided this request might be in order.
Example:
% cat ~/.ssh/config
Host foo
HostName foo.foo.foo
Include configA
Include configB
% cat ~/.ssh/configA
Host bar
HostName bar.bar.bar
% cat ~/.ssh/configB
Host foo
User foouser
% ssh --print-config-ideal
Host foo
HostName foo.foo.foo
Host bar
HostName bar.bar.bar
Host foo
User foouser
% ssh --print-config-acceptable
Host foo
HostName foo.foo.foo
User f...