lyhiving/sshconf

PHP ssh 配置解析器

v1.1 2022-04-20 09:50 UTC

This package is auto-updated.

Last update: 2024-09-20 14:55:48 UTC


README

了解更多关于 SSH 配置文件的信息:https://linux.die.net/man/5/ssh_config

安装

Composer

composer require lyhiving/sshconf
{
    "require": {
            "lyhiving/sshconf": "1.*"
    }
}

使用方法

<?php 
use lyhiving\sshconf\sshconf;
$sshconf = new sshconf(__DIR__ . "/#remotessh.txt");
var_dump($sshconf->gets());

CLI

注意事项

主要部分来自@m4rku5。我使其易于使用。