Chinaunix首页 | 论坛 | 博客
  • 博客访问: 439363
  • 博文数量: 184
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 594
  • 用 户 组: 普通用户
  • 注册时间: 2013-12-17 16:24
个人简介

我是一只小小鸟

文章分类

全部博文(184)

文章存档

2016年(1)

2015年(55)

2014年(127)

2013年(1)

分类: 其他平台

2014-11-23 17:14:48

原文地址:linux expect自动交互脚本 作者:luotootu


点击(此处)折叠或打开

  1. #!/usr/bin/expect
  2. set _pwd [lindex $argv 1]
  3. set _gpg_file [lindex $argv 0]
  4. set _text_file "gpg.txt";

  5. spawn gpg -o "$_text_file" "$_gpg_file"
  6. expect {
  7. "Enter passphrase:" {
  8. #send_user "enter pwd\n"
  9. send "$_pwd\n"
  10. }
  11. }
  12. spawn cat "$_text_file"
  13. send_user "============================================================================\n"
  14. interact
  15. send_user "============================================================================\n"
  16. spawn rm "$_text_file"
  17. interact

阅读(1105) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~