session.exp
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #! /bin/sh
  2. # The next line is executed by /bin/sh, but not Tcl 
  3.       exec expect $0 ${1+"$@"}
  4. # ====================================================================
  5. # The Vovida Software License, Version 1.0 
  6. # Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions
  9. # are met:
  10. # 1. Redistributions of source code must retain the above copyright
  11. #    notice, this list of conditions and the following disclaimer.
  12. # 2. Redistributions in binary form must reproduce the above copyright
  13. #    notice, this list of conditions and the following disclaimer in
  14. #    the documentation and/or other materials provided with the
  15. #    distribution.
  16. # 3. The names "VOCAL", "Vovida Open Communication Application Library",
  17. #    and "Vovida Open Communication Application Library (VOCAL)" must
  18. #    not be used to endorse or promote products derived from this
  19. #    software without prior written permission. For written
  20. #    permission, please contact vocal@vovida.org.
  21. # 4. Products derived from this software may not be called "VOCAL", nor
  22. #    may "VOCAL" appear in their name, without prior written
  23. #    permission of Vovida Networks, Inc.
  24. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  25. # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  26. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  27. # NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  28. # NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  29. # IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  30. # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  31. # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  32. # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  33. # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  34. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  35. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  36. # DAMAGE.
  37. # ====================================================================
  38. # This software consists of voluntary contributions made by Vovida
  39. # Networks, Inc. and many individuals on behalf of Vovida Networks,
  40. # Inc.  For more information on Vovida Networks, Inc., please see
  41. # <http://www.vovida.org/>.
  42. set argc [llength $argv]
  43. if { $argc != 2 } {
  44.     puts "usage: session.exp <rootpf> <userpf>n"
  45.     exit 1
  46. }
  47. set rootpf [lindex $argv 0]
  48. set userpf [lindex $argv 1]
  49. # suppressing stdout printout
  50. log_user 0
  51. stty -echo
  52. send_user "Enter root password: "
  53. expect_user -re "(.*)n"
  54. send_user "n"
  55. set rootpasswd $expect_out(1,string)
  56. set file [open "/tmp/$rootpf" "w"]
  57. puts $file $rootpasswd
  58. close $file
  59. send_user "Enter user password or passphrase: "
  60. expect_user -re "(.*)n"
  61. send_user "n"
  62. set userpasswd $expect_out(1,string)
  63. set file [open "/tmp/$userpf" "w"]
  64. puts $file $userpasswd
  65. close $file
  66. log_user 1
  67. set stty echo
  68. exit 0