免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
论坛 程序设计 Shell 请教
1234
最近访问板块 发新帖
打印 上一主题 下一主题

请教 [复制链接]

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-04 09:56:11数据库技术版块每日发帖之星
日期:2016-08-03 06:20:00数据库技术版块每日发帖之星
日期:2016-08-04 06:20:00
31 [报告]
发表于 2011-01-21 23:10 |只看该作者
我记得之前有个办法是通过某个方法往后面的命令输入内容的,就像管道符一样,只不过我忘了怎么用 ...
拿钱发帖死全家 发表于 2011-01-21 22:04



    无论你如何用,都要把标准输入做成终端才可以,哪怕是假的终端,都要可以被识别成是一个中断,这是某些命令的硬要求。而单纯的管道并非终端。

论坛徽章:
0
32 [报告]
发表于 2011-01-21 23:18 |只看该作者
无论你如何用,都要把标准输入做成终端才可以,哪怕是假的终端,都要可以被识别成是一个中断,这 ...
cjaizss 发表于 2011-01-21 23:10



    当然知道管道不行,我只是说像管道的使用方法一样而已

论坛徽章:
27
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:24:09CU大牛徽章
日期:2013-09-18 15:24:20CU大牛徽章
日期:2013-09-18 15:24:25CU大牛徽章
日期:2013-09-18 15:24:31CU大牛徽章
日期:2013-09-18 15:24:36CU大牛徽章
日期:2013-09-18 15:24:41CU大牛徽章
日期:2013-09-18 15:24:48CU大牛徽章
日期:2013-09-18 15:24:52处女座
日期:2013-09-27 17:45:43
33 [报告]
发表于 2011-01-22 14:29 |只看该作者
用expect可以实现自动化输入密码
  1. #!/usr/bin/expect -f
  2. exp_version -exit 5.0
  3. if {$argc!=2} {
  4.     send_user "usage: remote-exec command password\n"
  5.     send_user "Eg. remote-exec \"ssh user@host ls\\; echo done\" password\n"
  6.     send_user "or: remote-exec \"scp /local-file user@host:/remote-file\" password\n"
  7.     send_user "or: remote-exec \"scp user@host:/remote-file local-file\" password\n"
  8.     send_user "or: remote-exec \"rsync --rsh=ssh /local-file user@host:/remote-file\" password\n"
  9.     send_user "Caution: command should be quoted.\n"
  10.     exit
  11. }
  12. set cmd [lindex $argv 0]
  13. set password [lindex $argv 1]
  14. eval spawn $cmd
  15. set timeout 30
  16. while {1} {
  17.     expect -re "Are you sure you want to continue connecting (yes/no)?" {
  18.             # First connect, no public key in ~/.ssh/known_hosts
  19.             send "yes\r"
  20.         } -re "assword:" {
  21.             # Already has public key in ~/.ssh/known_hosts
  22.             send "$password\r"
  23.         } -re "Permission denied, please try again." {
  24.             # Password not correct
  25.             exit
  26.         } -re "kB/s|MB/s" {
  27.             # User equivalence already established, no password is necessary
  28.             set timeout -1
  29.         } -re "file list ..." {
  30.             # rsync started
  31.             set timeout -1
  32.         } -re "bind: Address already in use" {
  33.             # For local or remote port forwarding
  34.             set timeout -1
  35.         } -re "Is a directory|No such file or directory" {
  36.             exit
  37.         } -re "Connection refused" {
  38.             exit
  39.         } timeout {
  40.             exit
  41.         } eof {
  42.             exit
  43.         }
  44. }
复制代码

论坛徽章:
0
34 [报告]
发表于 2011-01-22 22:05 |只看该作者
sshpass

论坛徽章:
0
35 [报告]
发表于 2011-01-23 18:08 |只看该作者
回复 1# 拿钱发帖死全家
楼主试试
  1. yes passwd |scp test.log user@scp.xxx.com
复制代码

论坛徽章:
0
36 [报告]
发表于 2011-01-23 18:28 |只看该作者
回复  拿钱发帖死全家
楼主试试
yxlhit2010 发表于 2011-01-23 18:08



    试了,不行。
看来我要么回家看看笔记,要么使用expect了

论坛徽章:
3
2015年迎新春徽章
日期:2015-03-04 09:56:11数据库技术版块每日发帖之星
日期:2016-08-03 06:20:00数据库技术版块每日发帖之星
日期:2016-08-04 06:20:00
37 [报告]
发表于 2011-01-23 19:17 |只看该作者
试了,不行。
看来我要么回家看看笔记,要么使用expect了
拿钱发帖死全家 发表于 2011-01-23 18:28



    再看来看去,你不是还是要用/dev/ptmx或者类似的字符设备?别的东西骗不过终端检测

论坛徽章:
2
白羊座
日期:2013-11-18 19:52:42辰龙
日期:2014-09-07 07:46:06
38 [报告]
发表于 2011-01-27 21:35 |只看该作者
先echo密码到一个临时文件如/tmp/pw.log,然后scp test.log user@scp.xxx.com</tmp/pw.log,然后删除/tmp/pw.log,记得要有回车。不知道可不可以,没测试过

论坛徽章:
2
白羊座
日期:2013-11-18 19:52:42辰龙
日期:2014-09-07 07:46:06
39 [报告]
发表于 2011-01-27 21:54 |只看该作者
另外scp 加上-B参数试试看!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP