ssh_config icon indicating copy to clipboard operation
ssh_config copied to clipboard

Go parser for ssh_config files

Results 30 ssh_config issues
Sort by recently updated
recently updated
newest added

I'm working on a tool that reads into the ssh config and uses FZF to be able to sort these, with enter and you should SSH to that host. I'm...

Moving #22 to be from a different branch. Additionally, I'm going to publish a re-targeted fork of this repo until you merge this, because it's annoying to add replace directives...

This would be very useful if I want to create a new config by hand :( I may not have a file to read from and there is not other...

There is no easy way to walk through all the `Host`s in a config file if it uses `Include`. You have to basically detect that there is an include and...

Parser incorrectly parses DOS line endings ``\r\n``

SendEnv accepts wildcards for values. We need to make a decision whether to return the string with the wildcards, or to expand them.

For some keys the only acceptable values are `yes` or `no`. Some others accept only integers. If we know the type of the key, we should implement value typing for...

Before returning the value we should interpolate all of the shortcut values and substitute their actual values. per the manpage: ``` TOKENS Arguments to some keywords can make use of...

Add func `HostsAliases` that returns all hosts aliases in the configuration that match the given pattern, or nil if none are present. The use case is where configuration are updated...

This change addresses issue #63. To summarize, this change adds a function `ReloadConfigs()` that will reload the data from ssh config files in case they were modified externally. This involves...