*/
export function parseSSHGOutput(stdout: string): ISSHResolvedConfig {
const identityFiles: string[] = [];
for (const line of stdout.split('\n')) {
const spaceIdx = line.indexOf(' ');
if (spaceIdx === -1) {
continue;
}