文件名称:easyssh:Go的SSH包装器
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-25 16:09:32
Go
Easyssh Go的SSH包装器 特征: 支持PEM密钥认证(密码保护和非密码保护) 支持基于密码的身份验证 批处理和单命令处理 文件: 用法: go get github.com/stevenbrichards/easyssh 单个命令: sshSession := easyssh.Config{ User: username, KeyPath: pathToFile, Host: host, Port: "22", } err := sshSession.Connect() if err != nil { panic(err) } result, err := sshSession.Command("whoami") if err != nil { panic(err) } fmt.Println(result) 批处理命令 sshSes
【文件预览】:
easyssh-master
----README.md(1005B)
----example.go(875B)
----easyssh.go(4KB)
----LICENSE(1KB)