ssh-config
ssh-config copied to clipboard
📟 SSH config parser and stringifier
- Have a config that contains ``` Host YYYY HostName YYYY IdentityFile ~/.ssh/id_rsa StrictHostKeyChecking no UserKnownHostsFile /dev/null ProxyCommand ssh -i ~/.ssh/id_rsa -W %h:%p -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null XXX@ZZZ User XXX...
## Summary OpenSSH treats configuration directives case-insensitively, but `ssh-config` does not. For example: ```conf Host example hOsTnaME 1.2.3.4 ``` ```console % ssh -G example host example hostname 1.2.3.4 ``` However,...