Whenever I try to use `ssh -o Include='/some/path' host` I receive the error: Include directive not supported as a command-line option Yet man ssh states that Include is supported Value for -o command line option. Either manual page or ssh needs to be fixed.
This is probably documentation issue. The code is made that way, the include directive is not supported on command-line (there you can use -F switch for specific configuration file). The following patch should make things clear: diff --git a/ssh.1 b/ssh.1 index b4078525..dfad2927 100644 --- a/ssh.1 +++ b/ssh.1 @@ -499,7 +499,6 @@ For full details of the options listed below, and their possible values, see .It IdentitiesOnly .It IdentityAgent .It IdentityFile -.It Include .It IPQoS .It KbdInteractiveAuthentication .It KbdInteractiveDevices
Applied - thanks
closing resolved bugs as of 8.6p1 release