scriptdemo
上传用户:tianjinjs
上传日期:2007-01-05
资源大小:309k
文件大小:1k
源码类别:

Modem编程

开发平台:

Unix_Linux

  1. # A little demonstration of the possibilities of "runscript".
  2. # This script can be executed by typing: "runscript scriptdemo".
  3. #
  4. # Adjust the stty's below to your system: BSD-like or SysV-like.
  5. # Linux ofcourse accepts both :-)
  6. #
  7.   goto main
  8. left:
  9.   print "10 1010*c"
  10.   return
  11. right:
  12.   print "10 *c"
  13.   return
  14. main:
  15. # ! stty -echo cbreak
  16.   ! stty -echo -icanon min 1
  17.   verbose off
  18.   print Demo! press 'q' to move left, 'w' to move right, 'ESC' to stop.
  19.   print "                   *c"
  20.   expect {
  21.    "q" gosub left
  22.    "w" gosub right
  23.    "33" break
  24.   }
  25.   print nEnd of demonstration.
  26. # ! stty -cbreak echo
  27.   ! stty icanon echo min 5
  28.   sleep 1