ZBLOG

golang expect "*password*" # 然后发送密码 send "your_password\r" expect eof

您的代码看起来是使用expect脚本语言与Golang结合,实现自动化交互。根据您的描述,这段代码的作用是匹配到包含”password”的文本后发送密码。

以下是一个基于expect库实现与Golang结合的示例代码:

package main

import (
	"fmt"
	"log"
	"os/exec"
)

func main() {
	cmd := exec.Command("expect", "-c", `
		spawn your_command
		expect "*password*"
		send "your_password\r"
		expect eof
	`)
	output, err := cmd.Output()
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(string(output))
}

请将your_command替换为需要执行的命令,并将your_password替换为正确的密码。然后通过运行以上Go程序来触发自动交互过程。

注意:确保系统中已安装expect工具和相应依赖,并且在运行此程序之前,您可能需要先执行go mod init以初始化模块。

希望这可以帮助到您!如果有任何进一步的问题,请随时提问。


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=18300

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?