@ -30,6 +30,12 @@ func sshOptions(c *Command, set *base.FlagSets) {
Usage:`Specifies how the CLI will attempt to invoke an SSH client. This will also set a suitable default for -exec if a value was not specified. Currently-understood values are "ssh" and "putty".`,
})
f.StringVar(&base.StringVar{
Name:"remote-command",
Target:&c.flagRemoteCommand,
Usage:`Specifies a command that will be executed on the remote host. A complete command line may be specified as command, or it may have additional arguments. If supplied, the arguments will be appended to the command, separated by spaces.`,
})
f.StringVar(&base.StringVar{
Name:"username",
Target:&c.flagUsername,
@ -40,7 +46,8 @@ func sshOptions(c *Command, set *base.FlagSets) {