随笔分类 -  expect

摘要:Expect 交互 我们通过Shell可以实现简单的控制流功能,如:循环、判断等。但是对于需要交互的场合则必须通过人工来干预,有时候我们可能会需要实现和交互程序如telnet服务器等进行交互的功能。而expect就使用来实现这种功能的工具。expect是一个免费的编程工具语言,用来实现自动和交互式任 阅读全文
posted @ 2020-06-17 21:25 luowendy 阅读(411) 评论(0) 推荐(0)
摘要:expect ssh 另外一台主机 #!/usr/bin/expect spawn ssh 192.168.177.251 # spawn 后面加上要执行的命令 expect "yes/no" # expect 是将spawn的命令才能被expect捕捉到 send "yes\r" # send 是 阅读全文
posted @ 2020-06-17 21:07 luowendy 阅读(133) 评论(0) 推荐(0)
摘要:expect 模拟交互ftp 上传文件到指定目录下 服务端下载vsftpd 1.服务端下载vsftpd yum -y install vsftpd 2.配置vsftpd anon_upload_enable=YES anon_mkdir_write_enable=YES chown_uploads= 阅读全文
posted @ 2020-06-17 20:26 luowendy 阅读(265) 评论(0) 推荐(0)